SpreadJS Documentation
RangeExpression Method
The starting row coordinate of the range.
The starting column coordinate of the range.
The ending row coordinate of the range.
The ending column coordinate of the range.
Whether the starting row coordinate is relative or absolute.
Whether the starting column coordinate is relative or absolute.
Whether the ending row coordinate is relative or absolute.
Whether the ending column coordinate is relative or absolute.
Represents a cell range reference expression.
Syntax
var value; // Type: any
value = GcSpread.Sheets.Calc.Expressions.RangeExpression(startRow,
                                                         startColumn,
                                                         endRow,
                                                         endColumn,
                                                         startRowRelative,
                                                         startColumnRelative,
                                                         endRowRelative,
                                                         endColumnRelative);
function RangeExpression( 
   startRow : number,
   startColumn : number,
   endRow : number,
   endColumn : number,
   startRowRelative : boolean,
   startColumnRelative : boolean,
   endRowRelative : boolean,
   endColumnRelative : boolean
) : any;

Parameters

startRow
The starting row coordinate of the range.
startColumn
The starting column coordinate of the range.
endRow
The ending row coordinate of the range.
endColumn
The ending column coordinate of the range.
startRowRelative
Whether the starting row coordinate is relative or absolute.
startColumnRelative
Whether the starting column coordinate is relative or absolute.
endRowRelative
Whether the ending row coordinate is relative or absolute.
endColumnRelative
Whether the ending column coordinate is relative or absolute.
See Also

Reference

Expressions type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.