Provides access to the Map Images Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a map image. | |
Count | The map image count. | |
Element | The map image at the specified position. | |
Insert | Adds a map image at the specified position. | |
Remove | Removes the map image at the specified position. | |
RemoveAll | Removes all map images. |
IMapImages.Add Method
Adds a map image.
Public Sub Add ( _
ByVal mapImg As IMapImage _
)
public void Add (
IMapImage mapImg
);
IMapImages.Count Property
The map image count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IMapImages.Element Property
The map image at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IMapImage
public IMapImage get_Element (
int Index
);
IMapImages.Insert Method
Adds a map image at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal mapImg As IMapImage _
)
public void Insert (
int Index,
IMapImage mapImg
);
IMapImages.Remove Method
Removes the map image at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IMapImages.RemoveAll Method
Removes all map images.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IMapImages
Classes | Description |
---|---|
MapImages | A collection of Map Image objects. |