SolidFill
SolidFill class
Encapsulates the object that represents solid fill format
class SolidFill;
Properties
| Property | Type | Description |
|---|---|---|
| color | Color | Gets or sets the Color. |
| cellsColor | CellsColor | Gets and sets the CellsColor object. |
| transparency | number | Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear). |
Methods
| Method | Description |
|---|---|
| getColor() | @deprecated. Please use the ‘color’ property instead. Gets or sets the Color. |
| setColor(Color) | @deprecated. Please use the ‘color’ property instead. Gets or sets the Color. |
| getCellsColor() | @deprecated. Please use the ‘cellsColor’ property instead. Gets and sets the CellsColor object. |
| setCellsColor(CellsColor) | @deprecated. Please use the ‘cellsColor’ property instead. Gets and sets the CellsColor object. |
| getTransparency() | @deprecated. Please use the ’transparency’ property instead. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear). |
| setTransparency(number) | @deprecated. Please use the ’transparency’ property instead. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear). |
| isNull() | Checks whether the implementation object is null. |
| getHashCode() | Gets the hash code. |
| equals(Object) |
color
Gets or sets the Color.
color : Color;
cellsColor
Gets and sets the CellsColor object.
cellsColor : CellsColor;
transparency
Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
transparency : number;
getColor()
@deprecated. Please use the ‘color’ property instead. Gets or sets the Color.
getColor() : Color;
Returns
setColor(Color)
@deprecated. Please use the ‘color’ property instead. Gets or sets the Color.
setColor(value: Color) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | Color | The value to set. |
getCellsColor()
@deprecated. Please use the ‘cellsColor’ property instead. Gets and sets the CellsColor object.
getCellsColor() : CellsColor;
Returns
setCellsColor(CellsColor)
@deprecated. Please use the ‘cellsColor’ property instead. Gets and sets the CellsColor object.
setCellsColor(value: CellsColor) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | CellsColor | The value to set. |
getTransparency()
@deprecated. Please use the ’transparency’ property instead. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
getTransparency() : number;
setTransparency(number)
@deprecated. Please use the ’transparency’ property instead. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
setTransparency(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;
getHashCode()
Gets the hash code.
getHashCode() : number;
equals(Object)
equals(obj: Object) : boolean;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| obj | Object |