public interface ILayerEffect
Interface for Layer Effects
Modifier and Type | Method and Description |
---|---|
long |
getBlendMode()
Gets the blend mode.
|
byte |
getOpacity()
Gets the opacity.
|
boolean |
isVisible()
Gets a value indicating whether this instance is visible.
|
void |
setBlendMode(long value)
Sets the blend mode.
|
void |
setOpacity(byte value)
Sets the opacity.
|
void |
setVisible(boolean value)
Sets a value indicating whether this instance is visible.
|
byte getOpacity()
Gets the opacity.
void setOpacity(byte value)
Sets the opacity.
value
- the opacity.long getBlendMode()
Gets the blend mode.
void setBlendMode(long value)
Sets the blend mode.
value
- the blend mode.boolean isVisible()
Gets a value indicating whether this instance is visible.
void setVisible(boolean value)
Sets a value indicating whether this instance is visible.
value
- a value indicating whether this instance is visible.