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


IRelQueryTableInfo.GetBaseTableOfField Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (GeoDatabase)  

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,
  ITable** Table
);
[C++]

Parameters column [in] column is a parameter of type BSTR Table [out, retval]
Table is a parameter of type ITable

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