This document is archived and information here might be outdated.  Recommended version.


IMapServerIdentifyResult.RelatedRows Property (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (Carto)  

IMapServerIdentifyResult.RelatedRows Property

The related rows (relationships) of the identified object.

[Visual Basic .NET]
Public ReadOnly Property RelatedRows As IMapServerRelationships
[C#]
public IMapServerRelationships RelatedRows {get;}
[C++]
HRESULT get_RelatedRows(
  IMapServerRelationships** relationships
);
[C++]

Parameters relationships [out, retval]
relationships is a parameter of type IMapServerRelationships

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

A layer can be related to a table. RelatedRows  returns a collection of MapServerRelationship objects.  IMapServerRelationship  contains the name of the relate and  Rows . This property returns a collection of MapServerRow objects. Using IMapServerRow you can access properties (Name, PropertySet and RelatedRows) of the row of a related table.

See Also

IMapServerIdentifyResult Interface