The cursor of rows based on a set of object ids.
[Visual Basic 6.0] Function GetRows(
ByVal oids As Variant, _
ByVal Recycling As Boolean _
) As ICursor
[Visual Basic .NET] Public Function GetRows ( _ ByVal oids As Object, _ ByVal Recycling As Boolean _ ) As ICursor
[C#] public ICursor GetRows ( object oids, bool Recycling );
[Java] public ICursor getRows ( Object oids, Boolean Recycling ) throws IOException, AutomationException
[C++] HRESULT GetRows( VARIANT oids, VARIANT_BOOL Recycling, ICursor** Cursor );
Parameters
oids [in]
oids is a parameter of type VARIANT
Recycling [in]
Recycling is a parameter of type VARIANT_BOOL
Cursor [out, retval]
Cursor is a parameter of type ICursor
The GetRows method returns a cursor that may be used to retrieve a set of rows specified by the input array of object id values. See the description of the Search method to understand the meaning of the recycling parameter. It is far more efficient to retrieve a set of rows using the GetRows method than it is to retrieve each individual row using the GetRow method. The retrieved rows may be modified; Store should be called on the row objects after changing them.