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


IRelateDescription.RelatedTableFields Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IR > IRelateDescription Interface > IRelateDescription.RelatedTableFields Property
ArcGIS Developer Help

IRelateDescription.RelatedTableFields Property

Table fields that need to be returned as a part of the relate results.

[Visual Basic .NET]
Public Property RelatedTableFields As String
[C#]
public string RelatedTableFields {get; set;}
[C++]
HRESULT get_RelatedTableFields(
  System.String* tablefields
);
[C++]
HRESULT put_RelatedTableFields(
  BSTR tablefields
);
[C++]
Parameters
tablefields [out, retval]

tablefields is a parameter of type BSTR* tablefields [in]
tablefields is a parameter of type BSTR

Product Availability

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

Remarks

Pass in �*� to RelatedTableFields if you want to have all visible fields returned, or specify a list of field name if you want a subset of field list. You may get the list of all visible fields from IMapTableInfo::Fields. It throws exception when the field list contains an invalid field name or invisible field name.

See Also

IRelateDescription Interface