GetValue

The GetValue method returns the long value at a specified index of a long array.

[VB] long GetValue(
  long Index  
);
 
[JAVA] int GetValue(
  int Index    
);
 
[C++] HRESULT GetValue(
  LONG Index,            // in
  LONG * pValue          // out
);
 

Parameters

[VB][JAVA][C++] Index
Specifies the index into the long array from which to get the long value.
[C++] pValue
Points to the return value. See Return Values.

Return Values

Returns the long value in the long array at the specified index.


© 1997 by Microsoft Corporation. All rights reserved.