Package | feathers.controls.renderers |
Interface | public interface IGroupedListItemRenderer extends IToggle, IFeathersControl, IValidating |
Implementors | DefaultGroupedListItemRenderer, LayoutGroupGroupedListItemRenderer |
Property | Defined By | ||
---|---|---|---|
![]() | alpha : Number
The opacity of the display object. | IFeathersDisplayObject | |
![]() | base : DisplayObject [read-only]
The top-most object of the display tree that the display object is
connected to. | IFeathersDisplayObject | |
![]() | blendMode : String
The blend mode used when rendering the display object. | IFeathersDisplayObject | |
![]() | bounds : Rectangle [read-only]
The bounds of the display object in its local coordinate space. | IFeathersDisplayObject | |
data : Object
An item from the grouped list's data provider. | IGroupedListItemRenderer | ||
![]() | depth : int [read-only]
The component's depth in the display list, relative to the stage. | IValidating | |
![]() | filter : FragmentFilter
The filter used when rendering the display object. | IFeathersDisplayObject | |
groupIndex : int
The index of the item's parent group within the data provider of the
grouped list. | IGroupedListItemRenderer | ||
![]() | hasVisibleArea : Boolean [read-only]
Determines if the display object should be rendered or not. | IFeathersDisplayObject | |
![]() | height : Number
The height of the display object in the parent's coordinate space. | IFeathersDisplayObject | |
![]() | isCreated : Boolean [read-only]
Determines if the component has been initialized and validated for
the first time. | IFeathersControl | |
![]() | isEnabled : Boolean
Indicates whether the control is interactive or not. | IFeathersControl | |
![]() | isInitialized : Boolean [read-only]
Determines if the component has been initialized yet. | IFeathersControl | |
![]() | isSelected : Boolean
Indicates if the IToggle is selected or not. | IToggle | |
itemIndex : int
The index of the item within its parent group. | IGroupedListItemRenderer | ||
layoutIndex : int
The index of the item within the layout. | IGroupedListItemRenderer | ||
![]() | maxHeight : Number
The maximum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. | IFeathersControl | |
![]() | maxWidth : Number
The maximum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. | IFeathersControl | |
![]() | minHeight : Number
The minimum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. | IFeathersControl | |
![]() | minWidth : Number
The minimum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. | IFeathersControl | |
![]() | name : String
The name of the display object. | IFeathersDisplayObject | |
owner : GroupedList
The grouped list that contains this item renderer. | IGroupedListItemRenderer | ||
![]() | parent : DisplayObjectContainer [read-only]
The display object's parent, or null if it doesn't have
a parent. | IFeathersDisplayObject | |
![]() | pivotX : Number
The x coordinate of the display object's origin in its own coordinate
space. | IFeathersDisplayObject | |
![]() | pivotY : Number
The y coordinate of the display object's origin in its own coordinate
space. | IFeathersDisplayObject | |
![]() | root : DisplayObject [read-only]
| IFeathersDisplayObject | |
![]() | rotation : Number
The rotation of the display object, in radians. | IFeathersDisplayObject | |
![]() | scaleX : Number
This horizontal scale factor. | IFeathersDisplayObject | |
![]() | scaleY : Number
The vertical scale factor. | IFeathersDisplayObject | |
![]() | skewX : Number
The horizontal skew, in radians. | IFeathersDisplayObject | |
![]() | skewY : Number
The vertical skew, in radians. | IFeathersDisplayObject | |
![]() | stage : Stage [read-only]
The stage that the display object is connected to, or null
if it is not connected to a stage. | IFeathersDisplayObject | |
![]() | styleName : String
The concatenated styleNameList, with values separated
by spaces. | IFeathersControl | |
![]() | styleNameList : TokenList [read-only]
Contains a list of all "styles" assigned to this control. | IFeathersControl | |
![]() | styleProvider : IStyleProvider
When a component initializes, a style provider may be used to set
properties that affect the component's visual appearance. | IFeathersControl | |
![]() | touchable : Boolean
Determines if the display object may be touched. | IFeathersDisplayObject | |
![]() | transformationMatrix : Matrix [read-only]
The transformation matrix of the display object, relative to its
parent. | IFeathersDisplayObject | |
![]() | useHandCursor : Boolean
Determines if the mouse cursor should turn into a hand when the mouse
is over the display object. | IFeathersDisplayObject | |
![]() | visible : Boolean
Determines the visibility of the display object. | IFeathersDisplayObject | |
![]() | width : Number
The width of the display object in the parent's coordinate space. | IFeathersDisplayObject | |
![]() | x : Number
The x, or horizontal, position of the display object in the parent's
coordinate space. | IFeathersDisplayObject | |
![]() | y : Number
The y, or vertical, position of the display object in the parent's
coordinate space. | IFeathersDisplayObject |
data | property |
data:Object
An item from the grouped list's data provider. The data may change if this item renderer is reused for a new item because it's no longer needed for the original item.
This property is set by the list, and should not be set manually.
public function get data():Object
public function set data(value:Object):void
groupIndex | property |
groupIndex:int
The index of the item's parent group within the data provider of the grouped list.
This property is set by the list, and should not be set manually.
public function get groupIndex():int
public function set groupIndex(value:int):void
itemIndex | property |
itemIndex:int
The index of the item within its parent group.
This property is set by the list, and should not be set manually.
public function get itemIndex():int
public function set itemIndex(value:int):void
layoutIndex | property |
layoutIndex:int
The index of the item within the layout.
This property is set by the list, and should not be set manually.
public function get layoutIndex():int
public function set layoutIndex(value:int):void
owner | property |
owner:GroupedList
The grouped list that contains this item renderer.
This property is set by the list, and should not be set manually.
public function get owner():GroupedList
public function set owner(value:GroupedList):void