| Pakket | mx.controls.advancedDataGridClasses |
| Klasse | public class AdvancedDataGridHeaderInfo |
| Overerving | AdvancedDataGridHeaderInfo Object |
| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
| Eigenschap | Gedefinieerd door | ||
|---|---|---|---|
| actualColNum : int
The actual column index at which the header starts,
relative to the currently displayed columns. | AdvancedDataGridHeaderInfo | ||
| children : Array
An Array of all of the child AdvancedDataGridHeaderInfo instances
of this AdvancedDataGridHeaderInfo instance,
if this column is part of a column group. | AdvancedDataGridHeaderInfo | ||
| column : AdvancedDataGridColumn
A reference to the AdvancedDataGridColumn instance
corresponding to this AdvancedDataGridHeaderInfo instance. | AdvancedDataGridHeaderInfo | ||
| columnSpan : int
Number of actual columns spanned by the column header when using column groups. | AdvancedDataGridHeaderInfo | ||
![]() | constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | |
| depth : int
The depth of this AdvancedDataGridHeaderInfo instance
in the columns hierarchy of the AdvancedDataGrid control,
if this column is part of a column group. | AdvancedDataGridHeaderInfo | ||
| headerItem : IListItemRenderer
A reference to IListItemRenderer instance used to render the column header. | AdvancedDataGridHeaderInfo | ||
| index : int
The index of this AdvancedDataGridHeaderInfo instance
in the AdvancedDataGrid control. | AdvancedDataGridHeaderInfo | ||
| internalLabelFunction : Function
A function that gets created if the
column grouping requires extracting data from nested objects. | AdvancedDataGridHeaderInfo | ||
| parent : AdvancedDataGridHeaderInfo
The parent AdvancedDataGridHeaderInfo instance
of this AdvancedDataGridHeaderInfo instance
if this column is part of a column group. | AdvancedDataGridHeaderInfo | ||
| visible : Boolean
Contains true if the column is currently visible. | AdvancedDataGridHeaderInfo | ||
| visibleChildren : Array
An Array of the currently visible child AdvancedDataGridHeaderInfo instances. | AdvancedDataGridHeaderInfo | ||
| visibleIndex : int
The index of this column in the list of visible children of its parent
AdvancedDataGridHeaderInfo instance,
if this column is part of a column group. | AdvancedDataGridHeaderInfo | ||
| Methode | Gedefinieerd door | ||
|---|---|---|---|
AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)
Constructor. | AdvancedDataGridHeaderInfo | ||
![]() |
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | |
![]() |
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | |
![]() |
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | |
![]() |
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | |
![]() |
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | |
![]() |
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | |
![]() |
Retourneert de primitieve waarde van het opgegeven object. | Object | |
actualColNum | eigenschap |
public var actualColNum:int| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
The actual column index at which the header starts, relative to the currently displayed columns.
children | eigenschap |
public var children:Array| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
An Array of all of the child AdvancedDataGridHeaderInfo instances of this AdvancedDataGridHeaderInfo instance, if this column is part of a column group.
column | eigenschap |
public var column:AdvancedDataGridColumn| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
A reference to the AdvancedDataGridColumn instance corresponding to this AdvancedDataGridHeaderInfo instance.
columnSpan | eigenschap |
public var columnSpan:int| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
Number of actual columns spanned by the column header when using column groups.
depth | eigenschap |
public var depth:int| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
The depth of this AdvancedDataGridHeaderInfo instance in the columns hierarchy of the AdvancedDataGrid control, if this column is part of a column group.
headerItem | eigenschap |
public var headerItem:IListItemRenderer| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
A reference to IListItemRenderer instance used to render the column header.
index | eigenschap |
public var index:int| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
The index of this AdvancedDataGridHeaderInfo instance in the AdvancedDataGrid control.
internalLabelFunction | eigenschap |
public var internalLabelFunction:Function| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
A function that gets created if the column grouping requires extracting data from nested objects.
For example, if each data row appears as:
row = {.., .., Q1: { y2005: 241, y2006:353}};
and you define a column group as:
<mx:AdvancedDataGridColumnGroup dataField="Q1">
<mx:AdvancedDataGridColumn dataField="y2005">
<mx:AdvancedDataGridColumn dataField="y2006">
</mx:AdvancedDataGridColumnGroup>
The function for the column corresponding to y2005 is defined as:
function foo():String
{
return row["Q1"]["2005"];
}
The function also handles the case when any of the column or column groups uses a label function instead of a data field.
parent | eigenschap |
public var parent:AdvancedDataGridHeaderInfo| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
The parent AdvancedDataGridHeaderInfo instance of this AdvancedDataGridHeaderInfo instance if this column is part of a column group.
De standaardwaarde is null.
visible | eigenschap |
public var visible:Boolean| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
Contains true if the column is currently visible.
visibleChildren | eigenschap |
public var visibleChildren:Array| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
An Array of the currently visible child AdvancedDataGridHeaderInfo instances. if this column is part of a column group.
visibleIndex | eigenschap |
public var visibleIndex:int| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
The index of this column in the list of visible children of its parent AdvancedDataGridHeaderInfo instance, if this column is part of a column group.
AdvancedDataGridHeaderInfo | () | Constructor |
public function AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)| Taalversie: | ActionScript 3.0 |
| Productversie: | Flex 3 |
| Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parameterscolumn:AdvancedDataGridColumn — A reference to the AdvancedDataGridColumn instance
that this AdvancedDataGridHeaderInfo instance corresponds to.
| |
parent:AdvancedDataGridHeaderInfo — The parent AdvancedDataGridHeaderInfo instance
of this AdvancedDataGridHeaderInfo instance.
| |
index:int — The index of this AdvancedDataGridHeaderInfo instance
in the AdvancedDataGrid control.
| |
depth:int — The depth of this AdvancedDataGridHeaderInfo instance
in the columns hierarchy of the AdvancedDataGrid control.
| |
children:Array (default = null) — An Array of all of the child AdvancedDataGridHeaderInfo instances
of this AdvancedDataGridHeaderInfo instance.
| |
internalLabelFunction:Function (default = null) — A function that gets created if the column grouping
requires extracting data from nested objects.
| |
headerItem:IListItemRenderer (default = null) — A reference to IListItemRenderer instance used to
render the column header.
|
Wed Jun 13 2018, 11:42 AM Z
Overerfde openbare eigenschappen verbergen
Overerfde openbare eigenschappen weergeven