|
Add(IIEValue)
|
Adds an item (value) to the vector. The method returns the index of the added item which may be used to access the item later using the Value property
|
|
Append(IValueVector)
|
Adds the values from the given vector to the end of the current vector. The values are not cloned, i.e., it is not a "deep" copy or append
|
|
Clear
|
Clears the vector of all items
|
|
Delete(Integer)
|
Deletes the item at the specified index. If the index is out of bounds, an EListError exception should be raised
|
|
Equals(IValueVector)
|
Overloaded. Compare two IValueVectors. The method determines if both vectors have the same number of items and, if they do, do all items equal (IIEValue.Equals)
|
|
Equals(TObject)
|
Overloaded. Returns TRUE if the IValueVector is equal to some object
|
|
First
|
Returns the first (index=0) item in the vector. If the vector is empty, the method raises an EListError exception
|
|
Get(Integer)
|
Accessor method for Value property
|
|
GetHashCode
|
Accessor method for HashCode property
|
|
GetValueCount
|
Accessor method for ValueCount property
|
|
get_AsString
|
Represents method get_AsString.
|
|
get_HashCode
|
Represents method get_HashCode.
|
|
get_Value(Integer)
|
Represents method get_Value(Integer).
|
|
get_ValueCount
|
Represents method get_ValueCount.
|
|
IndexOf(IIEValue)
|
Returns the index of the first occurrence of the item within the vector, or -1 if the item is not in the vector
|
|
Insert(Integer,IIEValue)
|
Inserts the specified item at the index. If the index is out of bounds, an EListError exception is raised
|
|
Last
|
Returns the last item in the vector (index=ValueCount-1). If the vector is empty, a EListError exception is raised
|
|
Put(Integer,IIEValue)
|
Accessor method for Value property
|
|
Remove(IIEValue)
|
Removes the item from the value vector. The index where the item was found (or -1 if not found) is returned
|
|
set_Value(Integer,IIEValue)
|
Represents method set_Value(Integer,IIEValue).
|
|
ToString
|
Returns a string representation of the all the values in the vector
|