Provides access to the Map Server Rows Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a row. | |
Count | The row count. | |
Element | The row at the specified position. | |
Insert | Adds a row at the specified position. | |
Remove | Removes the row at the specified position. | |
RemoveAll | Removes all rows. |
IMapServerRows.Add Method
Adds a row.
Public Sub Add ( _
ByVal Row As IMapServerRow _
)
public void Add (
IMapServerRow Row
);
IMapServerRows.Count Property
The row count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IMapServerRows.Element Property
The row at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IMapServerRow
public IMapServerRow get_Element (
int Index
);
IMapServerRows.Insert Method
Adds a row at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal Row As IMapServerRow _
)
public void Insert (
int Index,
IMapServerRow Row
);
IMapServerRows.Remove Method
Removes the row at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IMapServerRows.RemoveAll Method
Removes all rows.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IMapServerRows
Classes | Description |
---|---|
MapServerRows | A collection of Map Server Row objects. |
Remarks
The number of rows returned is not limited by MaxRecordCount.