public interface IGradientFillSettings extends IFillSettings
Base interface for fill settings
Modifier and Type | Method and Description |
---|---|
boolean |
getAlignWithLayer()
Gets a value indicating whether [align with layer].
|
double |
getAngle()
Gets the angle.
|
Color |
getColor()
Gets the color.
|
IGradientColorPoint[] |
getColorPoints()
Gets the color points.
|
boolean |
getDither()
Gets a value indicating whether this
IGradientFillSettings is dither. |
String |
getGradientName()
Gets the name of the gradient.
|
int |
getGradientType()
Gets the type of the gradient.
|
double |
getHorizontalOffset()
Gets the horizontal offset.
|
boolean |
getReverse()
Gets a value indicating whether this
IGradientFillSettings is reverse. |
IGradientTransparencyPoint[] |
getTransparencyPoints()
Gets the transparency points.
|
double |
getVerticalOffset()
Gets the vertical offset.
|
void |
setAlignWithLayer(boolean value)
Sets a value indicating whether [align with layer].
|
void |
setAngle(double value)
Sets the angle.
|
void |
setColor(Color value)
Sets the color.
|
void |
setColorPoints(IGradientColorPoint[] value)
Sets the color points.
|
void |
setDither(boolean value)
Sets a value indicating whether this
IGradientFillSettings is dither. |
void |
setGradientName(String value)
Sets the name of the gradient.
|
void |
setGradientType(int value)
Sets the type of the gradient.
|
void |
setHorizontalOffset(double value)
Sets the horizontal offset.
|
void |
setReverse(boolean value)
Sets a value indicating whether this
IGradientFillSettings is reverse. |
void |
setTransparencyPoints(IGradientTransparencyPoint[] value)
Sets the transparency points.
|
void |
setVerticalOffset(double value)
Sets the vertical offset.
|
getFillType
Color getColor()
Gets the color.
void setColor(Color value)
Sets the color.
value
- the color.boolean getAlignWithLayer()
Gets a value indicating whether [align with layer].
void setAlignWithLayer(boolean value)
Sets a value indicating whether [align with layer].
value
- a value indicating whether [align with layer].boolean getDither()
Gets a value indicating whether this IGradientFillSettings
is dither.
IGradientFillSettings
is dither.void setDither(boolean value)
Sets a value indicating whether this IGradientFillSettings
is dither.
value
- a value indicating whether this IGradientFillSettings
is dither.boolean getReverse()
Gets a value indicating whether this IGradientFillSettings
is reverse.
IGradientFillSettings
is reverse.void setReverse(boolean value)
Sets a value indicating whether this IGradientFillSettings
is reverse.
value
- a value indicating whether this IGradientFillSettings
is reverse.double getAngle()
Gets the angle.
void setAngle(double value)
Sets the angle.
value
- the angle.double getHorizontalOffset()
Gets the horizontal offset.
void setHorizontalOffset(double value)
Sets the horizontal offset.
value
- the horizontal offset.double getVerticalOffset()
Gets the vertical offset.
void setVerticalOffset(double value)
Sets the vertical offset.
value
- the vertical offset.IGradientColorPoint[] getColorPoints()
Gets the color points.
void setColorPoints(IGradientColorPoint[] value)
Sets the color points.
value
- the color points.IGradientTransparencyPoint[] getTransparencyPoints()
Gets the transparency points.
void setTransparencyPoints(IGradientTransparencyPoint[] value)
Sets the transparency points.
value
- the transparency points.int getGradientType()
Gets the type of the gradient.
void setGradientType(int value)
Sets the type of the gradient.
value
- the type of the gradient.String getGradientName()
Gets the name of the gradient.
void setGradientName(String value)
Sets the name of the gradient.
value
- the name of the gradient.