IMapServerRows Interface

Provides access to the Map Server Rows Interface.

Members

Name Description
Method Add Adds a row.
Read-only property Count The row count.
Read-only property Element The row at the specified position.
Method Insert Adds a row at the specified position.
Method Remove Removes the row at the specified position.
Method 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.