Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

You can use touch gestures when expanding or collapsing groups.
Tap the group button or group header button to expand or collapse a group.

Using Code
This example creates a column and row group.

JavaScript

Copy Code

activeSheet.suspendPaint();activeSheet.setRowCount(34);activeSheet.setValue(0,0,"Western");activeSheet.setValue(0,1,"Western");activeSheet.setValue(0,2,"Western");activeSheet.setValue(1,0,"A");activeSheet.setValue(1,1,"B");activeSheet.setValue(1,2,"C");activeSheet.setValue(2,0,"A");activeSheet.setValue(2,1,"B");activeSheet.setValue(2,2,"C");activeSheet.rowOutlines.group(0,2);activeSheet.columnOutlines.group(0,1);activeSheet.resumePaint();

 

See Also
Using Range Grouping
useTouchLayout

  • No labels