Provides access to the Map Descriptions Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a map description. | |
Count | The map description count. | |
Element | The map description at the specified position. | |
Insert | Adds a map description at the specified position. | |
Remove | Removes the map description at the specified position. | |
RemoveAll | Removes all map descriptions. |
IMapDescriptions.Add Method
Adds a map description.
Public Sub Add ( _
ByVal mapDesc As IMapDescription _
)
public void Add (
IMapDescription mapDesc
);
IMapDescriptions.Count Property
The map description count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IMapDescriptions.Element Property
The map description at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IMapDescription
public IMapDescription get_Element (
int Index
);
IMapDescriptions.Insert Method
Adds a map description at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal mapDesc As IMapDescription _
)
public void Insert (
int Index,
IMapDescription mapDesc
);
IMapDescriptions.Remove Method
Removes the map description at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IMapDescriptions.RemoveAll Method
Removes all map descriptions.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IMapDescriptions
Classes | Description |
---|---|
MapDescriptions | A collection of Map Description objects. |