SpreadJS Documentation
resizeZeroIndicator Method
The drawing policy when the row or column is resized to zero.
Gets or sets the drawing policy when the row or column is resized to zero.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var returnValue; // Type: ResizeZeroIndicator
returnValue = instance.resizeZeroIndicator(value);
function resizeZeroIndicator( 
   value : ResizeZeroIndicator
) : ResizeZeroIndicator;

Parameters

value
The drawing policy when the row or column is resized to zero.

Return Value

The drawing policy when the row or column is resized to zero.
Example
This example displays double grid lines for the column or row with zero width or height.
spread.resizeZeroIndicator(GcSpread.Sheets.ResizeZeroIndicator.Enhanced);
activeSheet.getColumn(2).width(0);
activeSheet.getRow(1).height(0);
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.