| Package | ardisia.components.buttonBar.data |
| Class | public class ButtonBarButtonData |
| Inheritance | ButtonBarButtonData Object |
| Property | Defined By | ||
|---|---|---|---|
| markedForDeletion : Boolean
True to remove the button when the data is committed. | ButtonBarButtonData | ||
| renderer : ButtonBarButton
The renderer or button. | ButtonBarButtonData | ||
| width : Number
The stored width of the button. | ButtonBarButtonData | ||
| xPosition : Number
The tracked x position. | ButtonBarButtonData | ||
| Method | Defined By | ||
|---|---|---|---|
ButtonBarButtonData(renderer:ButtonBarButton = null, width:int = 0, xPosition:int = 0, markedForDeletion:Boolean = false) | ButtonBarButtonData | ||
Returns a clone of the object instance. | ButtonBarButtonData | ||
| markedForDeletion | property |
public var markedForDeletion:BooleanTrue to remove the button when the data is committed.
The default value is false.
| renderer | property |
| width | property |
public var width:NumberThe stored width of the button. Not necessarily the actual width of the button.
The default value is 0.
| xPosition | property |
public var xPosition:NumberThe tracked x position. Not necessarily the actual x coordinate of the button.
The default value is 0.
| ButtonBarButtonData | () | Constructor |
public function ButtonBarButtonData(renderer:ButtonBarButton = null, width:int = 0, xPosition:int = 0, markedForDeletion:Boolean = false)renderer:ButtonBarButton (default = null) | |
width:int (default = 0) | |
xPosition:int (default = 0) | |
markedForDeletion:Boolean (default = false) |
| clone | () | method |
public function clone():ButtonBarButtonDataReturns a clone of the object instance.
ReturnsButtonBarButtonData — ButtonBarButtonData instance
|