[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ComboBoxCellType

Class ComboBoxCellType

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents an editable combo box cell.

public class ComboBoxCellType : BaseCellType
Inheritance
object
ComboBoxCellType
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

ComboBoxCellType()

Create a combo box cell type.

public ComboBoxCellType()

Properties

Editable

Gets or sets whether the combo box is editable.

public bool Editable { get; set; }

Property Value

bool

EditorValueType

Gets or sets the value that is written to the underlying data model.

public EditorValueType EditorValueType { get; set; }

Property Value

EditorValueType

ItemHeight

Gets or sets the height of each item.

public int ItemHeight { get; set; }

Property Value

int

Items

Gets the items for the drop-down list in the combo box.

public IList<object> Items { get; }

Property Value

System.Collections.Generic.IList<T><object>

MaxDropDownItems

Gets or sets the maximum item count of the drop-down list per page.

public int MaxDropDownItems { get; set; }

Property Value

int