IPath
public interface IPath
Interface describes the set of Paths that present in a Shape layer.
Methods
Method | Description |
---|---|
getItems() | Gets array of Shapes in a Path. |
isDisabled() | Is Path Disabled. |
isInverted() | Is Path inverted. |
isNotLinked() | Is Path not linked. |
setDisabled(boolean value) | Is Path Disabled. |
setInverted(boolean value) | Is Path inverted. |
setItems(IPathShape[] shapes) | Sets array of Shapes in a Path. |
setNotLinked(boolean value) | Is Path not linked. |
getItems()
public abstract IPathShape[] getItems()
Gets array of Shapes in a Path.
Returns: com.aspose.psd.fileformats.psd.layers.layerresources.vectorpaths.IPathShape[] - Array of IPathShape.
isDisabled()
public abstract boolean isDisabled()
Is Path Disabled.
Returns: boolean
isInverted()
public abstract boolean isInverted()
Is Path inverted.
Returns: boolean
isNotLinked()
public abstract boolean isNotLinked()
Is Path not linked.
Returns: boolean
setDisabled(boolean value)
public abstract void setDisabled(boolean value)
Is Path Disabled.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setInverted(boolean value)
public abstract void setInverted(boolean value)
Is Path inverted.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setItems(IPathShape[] shapes)
public abstract void setItems(IPathShape[] shapes)
Sets array of Shapes in a Path.
Parameters:
Parameter | Type | Description |
---|---|---|
shapes | IPathShape[] | Array of IPathShape. |
setNotLinked(boolean value)
public abstract void setNotLinked(boolean value)
Is Path not linked.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |