Provides access to the Map Server Relationships Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a relationship. | |
Count | The relationship count. | |
Element | The relationship at the specified position. | |
Insert | Adds a relationship at the specified position. | |
Remove | Removes the relationship at the specified position. | |
RemoveAll | Removes all relationships. |
IMapServerRelationships.Add Method
Adds a relationship.
Public Sub Add ( _
ByVal rel As IMapServerRelationship _
)
public void Add (
IMapServerRelationship rel
);
IMapServerRelationships.Count Property
The relationship count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IMapServerRelationships.Element Property
The relationship at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IMapServerRelationship
public IMapServerRelationship get_Element (
int Index
);
IMapServerRelationships.Insert Method
Adds a relationship at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal Row As IMapServerRelationship _
)
public void Insert (
int Index,
IMapServerRelationship Row
);
IMapServerRelationships.Remove Method
Removes the relationship at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IMapServerRelationships.RemoveAll Method
Removes all relationships.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IMapServerRelationships
Classes | Description |
---|---|
MapServerRelationships | A collection of Map Server Relationship objects. |