| Pacchetto | mx.controls.advancedDataGridClasses |
| Classe | public class AdvancedDataGridHeaderInfo |
| Ereditarietà | AdvancedDataGridHeaderInfo Object |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
| Proprietà | Definito da | ||
|---|---|---|---|
| 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
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | 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 | ||
| Metodo | Definito da | ||
|---|---|---|---|
AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)
Constructor. | AdvancedDataGridHeaderInfo | ||
![]() |
Indica se per un oggetto è definita una proprietà specifica. | Object | |
![]() |
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | |
![]() |
Indica se la proprietà specificata esiste ed è enumerabile. | Object | |
![]() |
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | |
![]() |
Restituisce il valore di base dell'oggetto specificato. | Object | |
actualColNum | proprietà |
public var actualColNum:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The actual column index at which the header starts, relative to the currently displayed columns.
children | proprietà |
public var children:Array| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | 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 | proprietà |
public var column:AdvancedDataGridColumn| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
A reference to the AdvancedDataGridColumn instance corresponding to this AdvancedDataGridHeaderInfo instance.
columnSpan | proprietà |
public var columnSpan:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Number of actual columns spanned by the column header when using column groups.
depth | proprietà |
public var depth:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | 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 | proprietà |
public var headerItem:IListItemRenderer| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
A reference to IListItemRenderer instance used to render the column header.
index | proprietà |
public var index:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The index of this AdvancedDataGridHeaderInfo instance in the AdvancedDataGrid control.
internalLabelFunction | proprietà |
public var internalLabelFunction:Function| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | 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 | proprietà |
public var parent:AdvancedDataGridHeaderInfo| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The parent AdvancedDataGridHeaderInfo instance of this AdvancedDataGridHeaderInfo instance if this column is part of a column group.
Il valore predefinito è null.
visible | proprietà |
public var visible:Boolean| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Contains true if the column is currently visible.
visibleChildren | proprietà |
public var visibleChildren:Array| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | 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 | proprietà |
public var visibleIndex:int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | 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 | () | Funzione di costruzione |
public function AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parametricolumn: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.
|
Tue Jun 12 2018, 02:44 PM Z
Nascondi proprietà pubbliche ereditate
Mostra proprietà pubbliche ereditate