Provides access to the Map Server Row Interface.
When To Use
Use IMapServerRow to access row properties of a related table.
Members
Name | Description | |
---|---|---|
Name | The value of the primary display field. | |
PropertySet | A set of name-value pairs for the row's field names and values. | |
RelatedRows | The related rows (relationships). |
IMapServerRow.Name Property
The value of the primary display field.
Public ReadOnly Property Name As String
public string Name {get;}
Remarks
Name refers to the a string value of the Primary Display Field of the related table or layer. Name from IMapServerRelationship refers to the name given to the relationship itself.
IMapServerRow.PropertySet Property
A set of name-value pairs for the row's field names and values.
Public ReadOnly Property PropertySet As IPropertySet
public IPropertySet PropertySet {get;}
IMapServerRow.RelatedRows Property
The related rows (relationships).
Public ReadOnly Property RelatedRows As IMapServerRelationships
public IMapServerRelationships RelatedRows {get;}
Classes that implement IMapServerRow
Classes | Description |
---|---|
MapServerRow | The Map Server Row coclass contains information about a row. |
Remarks
A layer can be related to a table. The property RelatedRows on the IMapServerIdentifyResult interface returns a collection of MapServerRelationship objects. The IMapServerRelationship interface contains the name of the relate and the property Rows. This property returns a collection of MapServerRow objects. MapServerRow objects honor all field aliases, field visibility and field formatting set in the map document or the GeoDatabase. Using the IMapServerRow interface you can access properties (Name, PropertySet and RelatedRows) of the row of a related table.