|
|
|
NOTE: This Design document is subject to change at any time. |
Specifies the starting index for the collection. Normal collections are 1-based (Base = 1). But in some cases a zero-based collection is needed, so you can set Base to zero and then access the collection in that manner.
Example:
Collection.Add("First item")
S = Collection.Item(1)
Collection.Base = 0
S = Collection.Item(0)
shows how to access the first item in a collection in both the default and when changing the Base property. |
|