Package | mx.automation |
Interface | public interface IAutomationTabularData |
Property | Defined By | ||
---|---|---|---|
columnNames : Array [read-only]
Names of all columns in the data. | IAutomationTabularData | ||
firstVisibleRow : int [read-only]
The index of the first visible child. | IAutomationTabularData | ||
lastVisibleRow : int [read-only]
The index of the last visible child. | IAutomationTabularData | ||
numColumns : int [read-only]
The total number of columns in the data available. | IAutomationTabularData | ||
numRows : int [read-only]
The total number of rows of data available. | IAutomationTabularData |
Method | Defined By | ||
---|---|---|---|
Returns the values being displayed by the component for the given data. | IAutomationTabularData | ||
Returns a matrix containing the automation values of all parts of the components. | IAutomationTabularData |
columnNames | property |
columnNames:Array
[read-only] Names of all columns in the data.
public function get columnNames():Array
firstVisibleRow | property |
firstVisibleRow:int
[read-only] The index of the first visible child.
public function get firstVisibleRow():int
lastVisibleRow | property |
lastVisibleRow:int
[read-only] The index of the last visible child.
public function get lastVisibleRow():int
numColumns | property |
numColumns:int
[read-only] The total number of columns in the data available.
public function get numColumns():int
numRows | property |
numRows:int
[read-only] The total number of rows of data available.
public function get numRows():int
getAutomationValueForData | () | method |
public function getAutomationValueForData(data:Object):Array
Returns the values being displayed by the component for the given data.
Parameters
data:Object — The object representing the data.
|
Array — Array containing the values being displayed by the component.
|
getValues | () | method |
public function getValues(start:uint = 0, end:uint = 0):Array
Returns a matrix containing the automation values of all parts of the components. Should be row-major (return value is an Array of rows, each of which is an Array of "items").
Parameters
start:uint (default = 0 ) — The index of the starting child.
| |
end:uint (default = 0 ) — The index of the ending child.
|
Array — A matrix containing the automation values of all parts of the components.
|