ArcObjects Library Reference  (GeoDatabase)    

IRow.Table Property

The Table for the row.

[Visual Basic 6.0]
Property Table As ITable
[Visual Basic .NET]
Public ReadOnly Property Table As ITable
[C#]
public ITable Table {get;}
[Java]
public  getTable (
    ITable Table
)
[C++]
HRESULT get_Table(
  ITable** Table
);
[C++]

Parameters

Table [out, retval]

  Table is a parameter of type ITable

Product Availability

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

Description

Returns a pointer to the table the row belongs to.

[C#]

    //e.g., nameOfField = "FruitName";
    public void IRow_get_Table(IRow row)
    {
        ITable table = row.Table;
    }

[Visual Basic 6.0]

Example:

Dim pTable As ITable
Set pTable = pRow.Table

See Also

IRow Interface

 


Feedback Send feedback on this page