
22.09.2009, 11:55
|
|
Регистрация: May 2006
Сообщений: 125
|
selectedIndices property
selectedIndices:Array [read-write]
Language version: ActionScript 3.0
Player version: Flash Player 9.0.28.0
Gets or sets an array that contains the items that were selected from a multiple-selection list.
To replace the current selection programmatically, you can make an explicit assignment to this property. You can clear the current selection by setting this property to an empty array or to a value of undefined. If no items are selected from the list of items, this property is undefined.
The sequence of values in the array reflects the order in which the items were selected from the multiple-selection list. For example, if you click the second item from the list, then the third item, and finally the first item, this property contains an array of values in the following sequence: [1,2,0].
Implementation
public function get selectedIndices():Array
public function set selectedIndices(value:Array):void
See also
allowMultipleSelection
selectedIndex
selectedItems
|