SpreadJS Documentation
itemHeight Method
The height of each item.
Gets or sets the height of each item.
Syntax
var instance = new GcSpread.Sheets.ComboBoxCellType();
var returnValue; // Type: number
returnValue = instance.itemHeight(value);
function itemHeight( 
   value : number
) : number;

Parameters

value
The height of each item.

Return Value

The height of each item.
Example
This example sets the item height.
var cellType2 = new GcSpread.Sheets.ComboBoxCellType(); 
cellType2.items(["a","b","c"]); 
cellType2.itemHeight(30);
activeSheet.getCell(2, 2).cellType(cellType2);
activeSheet.allowEditorReservedLocations(false);
See Also

Reference

ComboBoxCellType class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.