| Package | com.yworks.graph.drawing |
| Class | public class ShapeNodeStyle |
| Inheritance | ShapeNodeStyle Object |
| Implements | IShapeNodeStyle |
IShapeNodeStyle interface
| Property | Defined By | ||
|---|---|---|---|
| fill : IFill
The fill for this style
| ShapeNodeStyle | ||
| shapeNodeShape : uint
The ShapeNodeShape for this style
| ShapeNodeStyle | ||
| stroke : IStroke
The stroke for this style. | ShapeNodeStyle | ||
| styleRenderer : IStyleRenderer [read-only]
Gets the renderer implementation that has been supplied to
this instance upon creation. | ShapeNodeStyle | ||
| Method | Defined By | ||
|---|---|---|---|
ShapeNodeStyle(styleRenderer:ShapeNodeStyleRenderer = null, shapeNodeShape:int = -1, stroke:IStroke = null, fill:IFill = null)
Create a new style instance. | ShapeNodeStyle | ||
clone():Object
Creates a clone of this instance. | ShapeNodeStyle | ||
Prepares the rendering of an IModelItem in a CanvasComponent by
adding ICanvasObject's to the provided canvas. | ShapeNodeStyle | ||
| Method | Defined By | ||
|---|---|---|---|
Callback that creates the cloned instance for the clone() method. | ShapeNodeStyle | ||
| fill | property |
fill:IFillThe fill for this style
public function get fill():IFill public function set fill(value:IFill):void| shapeNodeShape | property |
shapeNodeShape:uintThe ShapeNodeShape for this style
public function get shapeNodeShape():uint public function set shapeNodeShape(value:uint):void| stroke | property |
stroke:IStrokeThe stroke for this style.
public function get stroke():IStroke public function set stroke(value:IStroke):void| styleRenderer | property |
styleRenderer:IStyleRenderer [read-only] Gets the renderer implementation that has been supplied to this instance upon creation.
public function get styleRenderer():IStyleRenderer| ShapeNodeStyle | () | Constructor |
public function ShapeNodeStyle(styleRenderer:ShapeNodeStyleRenderer = null, shapeNodeShape:int = -1, stroke:IStroke = null, fill:IFill = null)Create a new style instance.
ParametersstyleRenderer:ShapeNodeStyleRenderer (default = null) — Custom renderer instance for this style. If null, a default style renderer is used.
| |
shapeNodeShape:int (default = -1) — The initial shape for this style. If -1, ShapeNodeShape.RECTANGLE is used.
| |
stroke:IStroke (default = null) — The initial stroke for this style. If null, a default stroke is used.
| |
fill:IFill (default = null) — The initial fill for this style. If null, a default fill is used.
|
| clone | () | method |
public function clone():ObjectCreates a clone of this instance.
ReturnsObject — A clone of this instance.
|
| createClone | () | method |
protected function createClone():ShapeNodeStyleCallback that creates the cloned instance for the clone() method.
For internal purposes. Implementation should use clone() instead.
ShapeNodeStyle — A new ShapeNodeStyle instance.
|
| install | () | method |
public function install(canvas:CanvasComponent, group:ICanvasObjectGroup, modelItem:IModelItem):Array
Prepares the rendering of an IModelItem in a CanvasComponent by
adding ICanvasObject's to the provided canvas.
Implementations may add zero or more ICanvasObject instances to
the given CanvasComponent. The group parameter
can be used as a hint for implementations. They can add their newly created
canvas objects to the given group. However they are not obliged to do that.
Parameters
canvas:CanvasComponent — The canvas to install the canvas objects in.
| |
group:ICanvasObjectGroup — A hint that tells the implementation where to add the canvas objects.
| |
modelItem:IModelItem — The item to install a visual representation for.
|
Array — An array of zero or more canvas objects that have been installed
in the canvas by this method or null if nothing was installed.
|