[]
Specifies the text alignment for checkbox list and radio button list cells.
Determines whether the text label appears to the left or right of the checkbox or radio button in CheckBoxListCellType and RadioButtonListCellType.
public enum CellTypeTextAlign
Public Enum CellTypeTextAlign
CheckBoxListCellType cellType = new CheckBoxListCellType();
cellType.TextAlign = CellTypeTextAlign.Left;
worksheet.Range["A1"].CellType = cellType;
| Name | Description |
|---|---|
| Left | Specifies text is to the left of the checkbox/radiolist. |
| Right | Specifies text is to the right of the checkbox/radiolist. |