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 theOutlineMask
class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getLength()
Gets the maximum length (in characters) of the outline code values.int
getLevel()
Gets the level of a mask.String
getSeparator()
Gets the separator of code values.int
getType()
Gets the type of a mask.void
setLength(int value)
Sets the maximum length (in characters) of the outline code values.void
setLevel(int value)
Sets the level of a mask.void
setSeparator(String value)
Sets the separator of code values.void
setType(int value)
Sets the type of a mask.
-
-
-
Constructor Detail
-
OutlineMask
public OutlineMask()
Initializes a new instance of the
OutlineMask
class.
-
-
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.
-
-