

/* readonly */ number | Count |
Returns the number of items in the sequence. |

void | |
Adds a new item to the end of the sequence. | |
void | Clear ( ) |
Removes all items from the sequence. | |
void | |
Inserts a new item in front of the sequence item with the specified index. If the index is out of range, the sequence is expanded to include this index. | |
void | |
Inserts a sequence of items passed as the second argument in front of the sequence item with the specified index. If the index is out of range, the sequence is expanded to include this index. | |
Item ( number Index ) | |
Accesses an item by its index in the sequence. If the index is out of range, this method throws the cipXInvalidSeqIndex exception. | |
void | Remove ( number FromIndex , number ToIndex ) |
Removes items in the specified range from the sequence. The first argument specifies the index of the first item to be removed. The second argument specifies the index of the item immediately after the last in the range to be removed. | |
void | |
Assigns an item to the designated index in the sequence. If the index is out of range, the sequence is expanded to include this index. |

/* readonly */ number | Count |

void | Append |

void | Clear | ( ) |

void | Insert |

void | InsertSeq |

Item | ( number Index ) |

void | Remove | ( number FromIndex , number ToIndex ) |

void | Set |
