Provides access to the Map Server Bookmarks Interface.
Members
| Name | Description | |
|---|---|---|
![]()  | 
Add | Adds a bookmark. | 
![]()  | 
Count | The bookmark count. | 
![]()  | 
Element | The bookmark at the specified position. | 
![]()  | 
Insert | Adds a bookmark at the specified position. | 
![]()  | 
Remove | Removes the bookmark at the specified position. | 
![]()  | 
RemoveAll | Removes all bookmarks. | 
IMapServerBookmarks.Add Method
Adds a bookmark.
Public Sub Add ( _
    ByVal bookmark As IMapServerBookmark _
)
public void Add (
    IMapServerBookmark bookmark
);
IMapServerBookmarks.Count Property
The bookmark count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IMapServerBookmarks.Element Property
The bookmark at the specified position.
Public Function get_Element ( _
    ByVal Index As Integer _
) As IMapServerBookmark
public IMapServerBookmark get_Element (
    int Index
);
IMapServerBookmarks.Insert Method
Adds a bookmark at the specified position.
Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal bookmark As IMapServerBookmark _
)
public void Insert (
    int Index,
    IMapServerBookmark bookmark
);
IMapServerBookmarks.Remove Method
Removes the bookmark at the specified position.
Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);
IMapServerBookmarks.RemoveAll Method
Removes all bookmarks.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IMapServerBookmarks
| Classes | Description | 
|---|---|
| MapServerBookmarks | A collection of Map Server Bookmark objects. | 

