| Paket | mx.core |
| Arabirim | public interface IRepeaterClient |
| Uygulayıcılar | UIComponent |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
| Özellik | Tanımlayan: | ||
|---|---|---|---|
| instanceIndices : Array
An Array that contains the indices required
to reference the repeated component instance from its document. | IRepeaterClient | ||
| isDocument : Boolean [salt okunur]
Contains true if this UIComponent instance is a document object. | IRepeaterClient | ||
| repeaterIndices : Array
An Array that contains the indices of the items in the data
providers of the Repeaters that produced the component. | IRepeaterClient | ||
| repeaters : Array
An Array that contains any enclosing Repeaters of the component. | IRepeaterClient | ||
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
Initializes the instanceIndices,
repeaterIndices, and repeaters properties. | IRepeaterClient | ||
instanceIndices | özellik |
instanceIndices:Array| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
An Array that contains the indices required
to reference the repeated component instance from its document.
This Array is empty unless the component
is within one or more Repeaters.
The first element corresponds to the outermost Repeater.
For example, if the id is "b"
and instanceIndices is [ 2, 4 ],
you would reference it on the document as b[2][4].
Uygulama
public function get instanceIndices():Array public function set instanceIndices(value:Array):voidisDocument | özellik |
isDocument:Boolean [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Contains true if this UIComponent instance is a document object.
That means it is at the top of the hierarchy of a Flex
application, MXML component, or ActionScript component.
Uygulama
public function get isDocument():BooleanrepeaterIndices | özellik |
repeaterIndices:Array| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
An Array that contains the indices of the items in the data
providers of the Repeaters that produced the component.
The Array is empty unless the component is within one or more
Repeaters.
The first element corresponds to the outermost Repeater component.
For example, if repeaterIndices is [ 2, 4 ],
the outer Repeater component used its dataProvider[2]
data item and the inner Repeater component used its
dataProvider[4] data item.
This property differs from instanceIndices
if the startingIndex of any of the Repeater components
is non-zero.
For example, even if a Repeater component starts at
dataProvider item 4, the document reference of the first
repeated component is b[0], not b[4].
Uygulama
public function get repeaterIndices():Array public function set repeaterIndices(value:Array):voidrepeaters | özellik |
repeaters:Array| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
An Array that contains any enclosing Repeaters of the component. The Array is empty unless the component is within one or more Repeaters. The first element corresponds to the outermost Repeater.
Uygulama
public function get repeaters():Array public function set repeaters(value:Array):voidinitializeRepeaterArrays | () | yöntem |
public function initializeRepeaterArrays(parent:IRepeaterClient):void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Initializes the instanceIndices,
repeaterIndices, and repeaters properties.
This method is called by the Flex framework. Developers should not need to call it.
Parametreler
parent:IRepeaterClient — The parent Repeater that created this component.
|
Tue Jun 12 2018, 01:09 PM Z