Package com.grapecity.documents.excel
Class ComboBoxCellType
java.lang.Object
com.grapecity.documents.excel.BaseCellType
com.grapecity.documents.excel.ComboBoxCellType
Represents an editable combo box cell.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether the combo box is editable.Gets the value that is written to the underlying data model.intGets the height of each item.getItems()Gets the items for the drop-down list in the combo box.intGets the maximum item count of the drop-down list per page.voidsetEditable(boolean value) Sets whether the combo box is editable.voidSets the value that is written to the underlying data model.voidsetItemHeight(int value) Sets the height of each item.voidsetMaxDropDownItems(int value) Sets the maximum item count of the drop-down list per page.
-
Constructor Details
-
ComboBoxCellType
public ComboBoxCellType()Create a combo box cell type.
-
-
Method Details
-
getItems
Gets the items for the drop-down list in the combo box. -
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.
-