SpreadJS Documentation
itemHeight Method
The toolbar item height.
Sets the toolbar item height.
Syntax
var instance = new GcSpread.Sheets.TouchToolStrip(spread, host);
var value; // Type: any
value = instance.itemHeight(height);
function itemHeight( 
   height : number
) : any;

Parameters

height
The toolbar item height.

Return Value

If called without a parameter, returns the current item height; otherwise, returns the current toolbar object.
Example
This example uses the itemHeight method.
spread.touchToolStrip.add(new GcSpread.Sheets.TouchToolStripItem("C", "Delete", "tsoutline.png", function(){ }))
spread.touchToolStrip.getItem("C").font("15px Arial").foreColor("red");
spread.touchToolStrip.imageAreaHeight(30);
spread.touchToolStrip.itemHeight(80);
spread.touchToolStrip.itemWidth(50);
spread.touchToolStrip.add(new GcSpread.Sheets.TouchToolStripSeparator());
See Also

Reference

TouchToolStrip class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.