Caption Property
Caption
Gets or sets the caption of the cell type.
Declaration
public string Caption { get; set; }
Public Property Caption As String
Examples
CheckBoxCellType cellType = new CheckBoxCellType();
cellType.Caption = "Approve";
string caption = cellType.Caption;