|
Syntax
- void insertByIndex
(
- long Index,
- any Element )
- raises ( com::sun::star::lang::IllegalArgumentException , com::sun::star::lang::IndexOutOfBoundsException , com::sun::star::lang::WrappedTargetException );
Description
inserts the element at the specified index.
To append an element, use the index "last index +1".
Syntax
- void removeByIndex
(
- long Index )
- raises ( com::sun::star::lang::IndexOutOfBoundsException , com::sun::star::lang::WrappedTargetException );
Description
removes the element at the specified index.
|