[]
Specifies the type of dropdown.
example
//This example sets the type of dropdown.
//create style
var style = new GC.Spread.Sheets.Style();
style.dropDowns=[
{
type:GC.Spread.Sheets.DropDownType.dateTimePicker,
option: {
showTime:false
}
}
];
sheet.setStyle(0, 0, style);
• calculator = 6
Indicates the type of dropdown is calculator.
• colorPicker = 0
Indicates the type of dropdown is colorpicker.
• dateTimePicker = 1
Indicates the type of dropdown is dateTimePicker.
• list = 4
Indicates the type of dropdown is list.
• monthPicker = 3
Indicates the type of dropdown is monthPicker.
• multiColumn = 8
Indicates the type of dropdown is multiColumn.
• slider = 5
Indicates the type of dropdown is slider.
• timePicker = 2
Indicates the type of dropdown is timePicker.
• workflowList = 7
Indicates the type of dropdown is workflowList.