Retrieves a subset of an array of values of the elements in the dataset beginning at a given zero-indexed position and containing a specified number of values.
Syntax
[Visual Basic .NET]
Public Function GetValuesSubset( _
ByVal Index As Integer, _
ByVal Count As Integer _
) As System.Array
[C#]
public System.Array GetValuesSubset(
int Index,
int Count
);
[Managed C++]
public: System::Array GetValuesSubset(
int Index,
int Count
);
[Unmanaged C++]
public: HRESULT GetValuesSubset(
int Index,
long Count,
SAFEARRAY * * ppRetVal
);
[Java]
public AgSafeArray getValuesSubset(
Integer Index,
int Count
);