Package com.aspose.tasks
Class OutlineMask
- java.lang.Object
-
- com.aspose.tasks.OutlineMask
-
public class OutlineMask extends Object
Represents four elements of a mask which defines an outline code format.
-
-
Constructor Summary
Constructors Constructor Description OutlineMask()Initializes a new instance of theOutlineMaskclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLength()Gets the maximum length (in characters) of the outline code values.intgetLevel()Gets the level of a mask.StringgetSeparator()Gets the separator of code values.intgetType()Gets the type of a mask.voidsetLength(int value)Sets the maximum length (in characters) of the outline code values.voidsetLevel(int value)Sets the level of a mask.voidsetSeparator(String value)Sets the separator of code values.voidsetType(int value)Sets the type of a mask.
-
-
-
Constructor Detail
-
OutlineMask
public OutlineMask()
Initializes a new instance of the
OutlineMaskclass.
-
-
Method Detail
-
getLength
public final int getLength()
Gets the maximum length (in characters) of the outline code values. 0 if length is not defined.
- Returns:
- the maximum length (in characters) of the outline code values.
-
setLength
public final void setLength(int value)
Sets the maximum length (in characters) of the outline code values. 0 if length is not defined.
- Parameters:
value- the maximum length (in characters) of the outline code values.
-
getLevel
public final int getLevel()
Gets the level of a mask.
- Returns:
- the level of a mask.
-
setLevel
public final void setLevel(int value)
Sets the level of a mask.
- Parameters:
value- the level of a mask.
-
getSeparator
public final String getSeparator()
Gets the separator of code values.
- Returns:
- the separator of code values.
-
setSeparator
public final void setSeparator(String value)
Sets the separator of code values.
- Parameters:
value- the separator of code values.
-
getType
public final int getType()
Gets the type of a mask.
- Returns:
- the type of a mask.
-
setType
public final void setType(int value)
Sets the type of a mask.
- Parameters:
value- the type of a mask.
-
-