SpreadJS Documentation
scrollIgnoreHidden Method
Whether the scroll bar ignores hidden rows or columns.
Gets or sets whether the scroll bar ignores hidden rows or columns.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var returnValue; // Type: Object
returnValue = instance.scrollIgnoreHidden(value);
function scrollIgnoreHidden( 
   value : boolean
) : Object;

Parameters

value
Whether the scroll bar ignores hidden rows or columns.

Return Value

true if the scroll bar ignores hidden rows or columns; otherwise, false.
Example
This example uses the scrollIgnoreHidden method.
spread.scrollIgnoreHidden(true);
activeSheet.getColumn(1).width(0);
activeSheet.getRow(1).height(0);
activeSheet.getColumn(3).visible(false);
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.