A connDynamicArray consists of a series of sections separated by delimiters. Each section can contain a string and optional subsections. Section indexing starts at 0. In the example below, section A has an index of 0 and section B is at index position 1.
sections A and B are siblings
sections One, Two, and Three are contained in section A
sections Blue, Green and Yellow are siblings and contained in section A and section Two.
Unless otherwise noted, all methods function against the current segment. Thus, to get the value of segment Blue from the connDynamicArray called foo with the structure below, the following C++ instruction is used:
String x = foo.get_Item(0).get_Item(2).get_Item(1).Value;
where
|
0 |
Retrieves section A. |
|
2 |
Retrieves section Two. Note: index 0 = section A index 1 = section One |
|
1 |
Retrieves section Blue. Note: index 0 = section Two |

|
Constructor. |
|
Adds the Value as a child or a subsection at the end of the current Section. | |
|
Removes the contents of the connDynamicArray regardless of the current section. | |
|
Compares the contents of the dynamic array with the specified value. | |
|
Gets the parent segment of the current segment. | |
|
Returns true if the current segment contains subsegments. | |
|
Returns the index of the first instance of the specified string in the section. Sub-sections are not searched. | |
|
Inserts the specified Value as a subsection in the current section at the specified index. | |
|
Returns true if the current segment contains no data. | |
|
Returns the index to the last instance of the specified string at or after the specified starting index position. Only sibling sections are searched. Subsections are not searched. | |
|
Returns the index of the specified Value in the current segment. If the segment is sorted, specifying the sort order enables fast searches. | |
|
Returns a copy of the current instance. | |
|
Removes the current connDynamicArray at the specified index. | |
|
Returns the parent segment of the current segment. For internal use only. | |
|
Sorts the current connDynamicArray segment. | |
|
Returns the string representation (not the contents) of the instance. |
|
Name |
Type |
Description |
|
Integer |
Returns the number of sub-segments in the current segments. | |
|
Integer |
Returns the connDynamicArray at the specified index in the current segment. Implemented in VB, but not C# or J#. | |
|
Integer |
After a locate method does not find the specified Value, LocatePosition contains the index where the value should be inserted into the connDynamicArray to maintain the sort order of the data. | |
|
String |
Returns or sets the contents of the current segment. |
|
Name |
Type |
Description |
|
Integer |
Indicates a descending sort order. | |
|
Integer |
Indicates an ascending sort order. | |
|
Integer |
Indicates the data is not ordered. |