06-13-2008, 02:11 PM
How can I use this function?
word GetArray(ColLeft RowTop VARIANT'VarArray)
Syntax
C++
BOOL CSpreadSheet::GetArray(long ColLeft, long RowTop, const VARIANT& VarArray);
Visual Basic
fpSpread.GetArray(ByVal ColLeft As Long, ByVal RowTop As Long, ByVal VarArray As Variant) As Boolean
Parameters
The following parameters are available:
Parameter Description
ColLeft Specifies the column of the first cell to read into the array
RowTop Specifies the row of the first cell to read into the array
VarArray Array to contain the data returned from the sheet
The array specification is zero-based.
I tried:
ARRAY(VARIANT) aa
sc3.GetArray(1 1 aa)
but doesn't work.
word GetArray(ColLeft RowTop VARIANT'VarArray)
Syntax
C++
BOOL CSpreadSheet::GetArray(long ColLeft, long RowTop, const VARIANT& VarArray);
Visual Basic
fpSpread.GetArray(ByVal ColLeft As Long, ByVal RowTop As Long, ByVal VarArray As Variant) As Boolean
Parameters
The following parameters are available:
Parameter Description
ColLeft Specifies the column of the first cell to read into the array
RowTop Specifies the row of the first cell to read into the array
VarArray Array to contain the data returned from the sheet
The array specification is zero-based.
I tried:
ARRAY(VARIANT) aa
sc3.GetArray(1 1 aa)
but doesn't work.