Collection Class
Substitute for Microsoft.VisualBasic.Collection that implements a keys property
Namespace: inmydata.WindowsForms.LibraryAssembly: inmydata.WindowsForms.Library (in inmydata.WindowsForms.Library.dll) Version: 1.0.0.0 (1.0.0.0)
[SerializableAttribute]
public class Collection : Collection_Collection, IEnumerable,
ICollection, IList
<SerializableAttribute>
Public Class Collection
Implements Collection_Collection, IEnumerable, ICollection, IList
DEFINE VARIABLE chComHandle AS COM-HANDLE NO-UNDO.
CREATE "inmydata.WindowsForms.Library.Collection" chComHandle.
DEFINE PRIVATE VARIABLE Collection AS CLASS inmydata.WindowsForms.Library.Collection NO-UNDO.
Count |
Returns an Integer containing the number of elements in a collection.
|
ItemInt32 |
Returns a specific element of a Collection object either by position or by key. Read-only.
|
ItemObject |
Returns a specific element of a Collection object either by position or by key.
|
ItemString |
Returns a specific element of a Collection object either by position or by key. Read-only.
|
Keys |
Gets a list of strings that represents the keys for this collection
|
Objects |
Gets a list of objects that represents the objects for this collection
|
Contains |
Returns a Boolean value indicating whether a Visual Basic Collection object contains an element with a specific key.
|
Equals |
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object)) |
GetEnumerator |
Returns a reference to an enumerator object, which is used to iterate over a Collection object.
|