[]
        
(Showing Draft Content)

GC.Spread.Sheets.DropDownType

Enumeration: DropDownType

Spread.Sheets.DropDownType

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);

Table of contents

Enumeration members

Enumeration members

calculator

calculator = 6

Indicates the type of dropdown is calculator.


colorPicker

colorPicker = 0

Indicates the type of dropdown is colorpicker.


dateTimePicker

dateTimePicker = 1

Indicates the type of dropdown is dateTimePicker.


list

list = 4

Indicates the type of dropdown is list.


monthPicker

monthPicker = 3

Indicates the type of dropdown is monthPicker.


multiColumn

multiColumn = 8

Indicates the type of dropdown is multiColumn.


slider

slider = 5

Indicates the type of dropdown is slider.


timePicker

timePicker = 2

Indicates the type of dropdown is timePicker.


workflowList

workflowList = 7

Indicates the type of dropdown is workflowList.