ActionScript 2.0 Components Language Reference |
|
|
|
| DataProvider API > DataProvider.removeItemAt() | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
myDP.removeItemAt(index)
index A number greater than or equal to 0. This number is the index of the item to remove.
Nothing.
Method; removes the item at the specified index. The indices after the removed index collapse by one.
This method triggers the modelChanged event with the event name removeItems.
This example removes the item at the fourth position:
myDP.removeItemAt(3);
|
|
|
|