类 ComboBoxCellType
java.lang.Object
com.grapecity.documents.excel.BaseCellType
com.grapecity.documents.excel.ComboBoxCellType
Represents an editable combo box cell.
-
构造器概要
-
方法概要
修饰符和类型方法说明boolean
Gets whether the combo box is editable.Gets the value that is written to the underlying data model.int
Gets the height of each item.int
Gets the maximum item count of the drop-down list per page.void
setEditable
(boolean value) Sets whether the combo box is editable.void
Sets the value that is written to the underlying data model.void
setItemHeight
(int value) Sets the height of each item.void
setMaxDropDownItems
(int value) Sets the maximum item count of the drop-down list per page.
-
构造器详细资料
-
ComboBoxCellType
public ComboBoxCellType()
-
-
方法详细资料
-
getMaxDropDownItems
public int getMaxDropDownItems()Gets the maximum item count of the drop-down list per page. -
setMaxDropDownItems
public void setMaxDropDownItems(int value) Sets the maximum item count of the drop-down list per page. -
getEditable
public boolean getEditable()Gets whether the combo box is editable. -
setEditable
public void setEditable(boolean value) Sets whether the combo box is editable. -
getEditorValueType
Gets the value that is written to the underlying data model. -
setEditorValueType
Sets the value that is written to the underlying data model. -
getItemHeight
public int getItemHeight()Gets the height of each item. -
setItemHeight
public void setItemHeight(int value) Sets the height of each item.
-