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


IRelQueryTableInfo.GetBaseTableOfField Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IRelQueryTableInfo Interface > IRelQueryTableInfo.GetBaseTableOfField Method
ArcGIS Developer Help

IRelQueryTableInfo.GetBaseTableOfField Method

Returns the base table for a particular field.

[Visual Basic .NET]
Public Function GetBaseTableOfField ( _
    ByVal column As String _
) As ITable
[C#]
public ITable GetBaseTableOfField (
    string column
);
[C++]
HRESULT GetBaseTableOfField(
  BSTR column
);
[C++]
Parameters
column [in]

column is a parameter of type BSTR

Product Availability

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

Remarks

The GetBaseTableofField method will return the underlying Table object that is associated with a field in a RelQueryTable. To ensure that the column will be found, provide a fully qualified field name when executing this method.

See Also

IRelQueryTableInfo Interface