SpreadJS Documentation
getDirection Method
Gets the range group's direction.
Syntax
var instance = new GcSpread.Sheets.RangeGroup(count);
var value; // Type: RangeGroupDirection
value = instance.getDirection();
function getDirection() : RangeGroupDirection;

Return Value

The range group's direction.
Example
This example uses the getDirection method.
activeSheet.isPaintSuspended(true);
activeSheet.rowRangeGroup.group(0,5);
activeSheet.rowRangeGroup.expand(0,false);
activeSheet.isPaintSuspended(false);
alert(activeSheet.rowRangeGroup.getDirection());
See Also

Reference

RangeGroup type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.