Package | spark.components.itemRenderers |
Interface | public interface IMobileGridTextCellRenderer extends IMobileGridCellRenderer, IDataRenderer |
Implementors | MobileGridTextCellRenderer |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.11 |
Runtime Versions : | AIR 3.8 |
This class is experimental, which means it has not been tested or documented as thoroughly as other core Apache Flex classes. |
Typically , implementors will set the text to render using labelField and/or labelFunction this way:
text = UIComponentUtils.itemToLabel(value, _labelField, _labelFunction);
Property | Defined By | ||
---|---|---|---|
canSetContentHeight : Boolean [read-only] Flag indicating whether the layout manager can stretch the height of this renderer to match the column's height. | IMobileGridCellRenderer | ||
canSetContentWidth : Boolean [read-only] Flag indicating whether the layout manager can stretch the width of this renderer to match the column's width. | IMobileGridCellRenderer | ||
cssStyleName : String [write-only] this property is set with the GridColumn's styleName property. | IMobileGridCellRenderer | ||
data : Object
The data to render or edit. | IDataRenderer | ||
labelField : String [write-only]
Implement this property so that the renderer can receive the dataField from its MobileGridColumn. | IMobileGridTextCellRenderer | ||
labelFunction : Function [write-only]
Implement this property so that the renderer can receive the labelFunction its MobileGridColumn
| IMobileGridTextCellRenderer | ||
textAlign : String [write-only]
Implement this property so that the renderer can receive the textAlign property from the renderers' MobileGridColumn
| IMobileGridTextCellRenderer |
labelField | property |
labelField:String
[write-only] Implement this property so that the renderer can receive the dataField from its MobileGridColumn.
public function set labelField(value:String):void
See also
labelFunction | property |
labelFunction:Function
[write-only] Implement this property so that the renderer can receive the labelFunction its MobileGridColumn
public function set labelFunction(value:Function):void
See also
textAlign | property |
textAlign:String
[write-only] Implement this property so that the renderer can receive the textAlign property from the renderers' MobileGridColumn
public function set textAlign(value:String):void
See also