|
EGWorldCollection Public Methods
|
Add
|
|
:
Adds an EGWorld to this EGWorldCollection and Returns its Position in the Collection |
Public Overloads Function Add(ByVal NewEGWorld As EGWorld) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
NewEGWorld
As
EGWorld
|
Return Value:
|
|
Int32 |
|
|
AddIfNew
|
|
:
Adds an EGWorld to this Collection and returns its Index provided it is not already a member; if it is a member, returns its Index |
Public Overloads Function AddIfNew(ByVal Candidate As EGWorld) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
Candidate
As
EGWorld
|
Return Value:
|
|
Int32 |
|
|
AddIfNewRange
|
|
:
Adds to this Collection the members of a given EGWorldCollection which are new to this Collection and returns the number of EGWorlds added |
Public Overloads Function AddIfNewRange(ByVal Range As EGWorldCollection) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
Range
As
EGWorldCollection
|
Return Value:
|
|
Int32 |
|
|
AddRange
|
|
:
Adds the members of a given Array of EGWorld Objects to this Collection and returns the number of EGWorlds added |
Public Overloads Function AddRange(ByVal Range As EGWorld[]) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
Range
As
EGWorld[]
|
Return Value:
|
|
Int32 |
|
|
AddRange
|
|
:
Adds the members of a given EGWorldCollection to this Collection and returns the number of EGWorlds added |
Public Overloads Function AddRange(ByVal Range As EGWorldCollection) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
Range
As
EGWorldCollection
|
Return Value:
|
|
Int32 |
|
|
CastToElementCollection
|
|
:
Returns this Collection cast to Type ElementCollection, and all its members to Type Element |
Public Function CastToElementCollection() As ElementCollection
|
Remarks:
|
|
|
Parameters:
|
|
|
Return Value:
|
|
ElementCollection |
|
|
Contains
|
|
:
Returns True iff a given EGWorld belongs to this Collection |
Public Overloads Function Contains(ByVal EGW As EGWorld) As Boolean
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
EGW
As
EGWorld
|
Return Value:
|
|
Boolean |
|
|
IndexOf
|
|
:
Returns the Index of a given EGWorld if it is in this Collection; else returns -1 |
Public Overloads Function IndexOf(ByVal EGW As EGWorld) As Int32
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
EGW
As
EGWorld
|
Return Value:
|
|
Int32 |
|
|
Remove
|
|
:
Removes a given EGWorld from this Collection |
Public Overloads Sub Remove(ByVal Removee As EGWorld)
|
Remarks:
|
|
|
Parameters:
|
|
ByVal
Removee
As
EGWorld
|
Return Value:
|
|
Void |
|
|
ToString
|
|
:
A String representation of this EGWorldCollection |
Public Overrides Function ToString() As String
|
Remarks:
|
|
|
Parameters:
|
|
|
Return Value:
|
|
String |
|
|
|
|