| Member | Description |
|---|---|
| left | Specifies text is on the left. |
| right | Specifies text is on the right. |
| Member | Description |
|---|---|
| left | Specifies text is on the left. |
| right | Specifies text is on the right. |
//This example creates a check box cell. var cellType = new GC.Spread.Sheets.CellTypes.RadioButtonList(); cellType.items([{text:"a",value:1},{text:"b",value:2},{text:"c",value:3}]); cellType.textAlign(GC.Spread.Sheets.CellTypes.TextAlign.left); activeSheet.getCell(2, 2).cellType(cellType);
Object
GC.Spread.Sheets.CellTypes.TextAlign