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(
BSTR* 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.