[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CellControlType

CellControlType Enum

Specifies the type of cell control applied to a range.

Cell controls are formatting attributes on a range that define interactive behavior such as checkboxes. Use Type to retrieve the control type for a given range.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum CellControlType
Public Enum CellControlType
Examples
IRange range = worksheet.Range["A1"];
range.Value = true;
range.CellControl.SetCheckbox();
CellControlType type = range.CellControl.Type;

Fields

Name Description
Checkbox

Indicates that the cell control is checkbox.

None

Default type of cell control. The cell control object on a range with no cell control formatting will return None as its type.

Unknown

Type associated with a future CellControl object for backward compatibility.