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


ITableUtil.GetRows Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITableUtil Interface > ITableUtil.GetRows Method
ArcGIS Developer Help

ITableUtil.GetRows Method

A cursor of rows given a set of object ids, in the specified spatial reference.

[Visual Basic .NET]
Public Function GetRows ( _
    ByVal oids As Object, _
    ByVal Recycling As Boolean, _
    ByVal SpatialReference As ISpatialReference _
) As ICursor
[C#]
public ICursor GetRows (
    object oids,
    bool Recycling,
    ISpatialReference SpatialReference
);
[C++]
HRESULT GetRows(
  VARIANT oids,
  VARIANT_BOOL Recycling,
  ISpatialReference* SpatialReference
);
[C++]
Parameters
oids [in]

oids is a parameter of type VARIANT Recycling [in]
Recycling is a parameter of type bool SpatialReference [in]
SpatialReference is a parameter of type ISpatialReference*

Product Availability

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

Remarks

Equivalent to ITable.GetRows, but allows the output spatial reference to be specified.

See Also

ITableUtil Interface