public interface ILayerEffect
Interface for Layer Effects
Modifier and Type | Method and Description |
---|---|
long |
getBlendMode()
Gets or sets the blend mode.
|
byte |
getOpacity()
Gets or sets the opacity where 255 = 100%
|
boolean |
isVisible()
Gets or sets a value indicating whether this instance is visible.
|
void |
setBlendMode(long value)
Gets or sets the blend mode.
|
void |
setOpacity(byte value)
Gets or sets the opacity where 255 = 100%
|
void |
setVisible(boolean value)
Gets or sets a value indicating whether this instance is visible.
|
byte getOpacity()
Gets or sets the opacity where 255 = 100%
Value: The opacity.void setOpacity(byte value)
Gets or sets the opacity where 255 = 100%
Value: The opacity.long getBlendMode()
Gets or sets the blend mode.
Value: The blend mode.void setBlendMode(long value)
Gets or sets the blend mode.
Value: The blend mode.boolean isVisible()
Gets or sets a value indicating whether this instance is visible.
Value:true
if this instance is visible; otherwise, false
.void setVisible(boolean value)
Gets or sets a value indicating whether this instance is visible.
Value:true
if this instance is visible; otherwise, false
.