| 패키지 | mx.controls.advancedDataGridClasses |
| 클래스 | public class AdvancedDataGridHeaderInfo |
| 상속 | AdvancedDataGridHeaderInfo Object |
| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
| 속성 | 정의 주체 | ||
|---|---|---|---|
| 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
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | 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 | ||
| 메서드 | 정의 주체 | ||
|---|---|---|---|
AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)
Constructor. | AdvancedDataGridHeaderInfo | ||
![]() |
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | |
![]() |
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | |
![]() |
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | |
![]() |
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | |
![]() |
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | |
![]() |
지정된 객체의 문자열 표현을 반환합니다. | Object | |
![]() |
지정된 객체의 프리미티브 값을 반환합니다. | Object | |
actualColNum | 속성 |
public var actualColNum:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
The actual column index at which the header starts, relative to the currently displayed columns.
children | 속성 |
public var children:Array| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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 | 속성 |
public var column:AdvancedDataGridColumn| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
A reference to the AdvancedDataGridColumn instance corresponding to this AdvancedDataGridHeaderInfo instance.
columnSpan | 속성 |
public var columnSpan:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Number of actual columns spanned by the column header when using column groups.
depth | 속성 |
public var depth:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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 | 속성 |
public var headerItem:IListItemRenderer| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
A reference to IListItemRenderer instance used to render the column header.
index | 속성 |
public var index:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
The index of this AdvancedDataGridHeaderInfo instance in the AdvancedDataGrid control.
internalLabelFunction | 속성 |
public var internalLabelFunction:Function| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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 | 속성 |
public var parent:AdvancedDataGridHeaderInfo| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
The parent AdvancedDataGridHeaderInfo instance of this AdvancedDataGridHeaderInfo instance if this column is part of a column group.
기본값: null.
visible | 속성 |
public var visible:Boolean| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Contains true if the column is currently visible.
visibleChildren | 속성 |
public var visibleChildren:Array| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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 | 속성 |
public var visibleIndex:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | 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 | () | 생성자 |
public function AdvancedDataGridHeaderInfo(column:AdvancedDataGridColumn, parent:AdvancedDataGridHeaderInfo, index:int, depth:int, children:Array = null, internalLabelFunction:Function = null, headerItem:IListItemRenderer = null)| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Flex 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
매개 변수column: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, 03:17 PM Z
상속되는 공용 속성 숨기기
상속되는 공용 속성 표시