StringsCollection Object
StringsCollection Object
This object represents a collection of strings. It can be used in document indexing and export handling scripts.
Properties
Name | Type | Description |
Count | Long, read-only | Stores the number of elements in the collection. |
Methods
Name | Parameters | Description |
CopyFrom | [in] StringsCollection - a collection of strings to be copied into the current object. | Initializes properties of the current object with values of similar properties of another object. |
Delete | [in] Long - index of the string in the collection. It should be in a range from 0 to the value of the Count property minus 1. | Removes an element from the set. |
DeleteAll | Removes all the elements from the set. | |
Insert |
[in] Long - index of the newly inserted element. If the element is inserted in place of the existing element, the elements of the collection are shifted to the right. The element may also be inserted at the end of the set, in which case the value of this parameter must be equal to the value of the Count property. [in] String - the newly inserted string. |
Inserts a new element into the specified position in the set. |
Item |
[in] Long - the index of the string in the set. It must range from 0 to the value of the Count property minus 1. [out] String - the string with the specified index. |
Provides access to a single element of the set. |
See also
3/26/2024 1:49:49 PM