[]
Returns the ICellControl object that represents the cell control of the current range.
ICellControl CellControl { get; }
ReadOnly Property CellControl As ICellControl
IRange range = worksheet.Range["A1:A3"];
range.CellControl.SetCheckbox();
ICellControl cellControl = range.CellControl;
CellControlType controlType = cellControl.Type;