|
|
|
SftBoxColumn.CellHAlign Property |
Defines the default horizontal alignment of cell contents in this column.
Syntax
VB.NET |
Style = object.CellHAlign As SftBoxHAlignConstants |
||
VB |
Style = object.CellHAlign As SftBoxHAlignConstants |
||
C#.NET |
SftBoxHAlignConstants Style = object.CellHAlign; |
||
VC++ |
enum SftBoxHAlignConstants Style = object->CellHAlign;
|
||
C |
HRESULT object->get_CellHAlign(enum SftBoxHAlignConstants* Style); |
||
Delphi |
Style := object.CellHAlign : TOleEnum; |
||
VB.NET |
object.CellHAlign = Style As SftBoxHAlignConstants |
||
VB |
object.CellHAlign = Style As SftBoxHAlignConstants |
||
C#.NET |
SftBoxHAlignConstants object.CellHAlign = Style; |
||
VC++ |
enum SftBoxHAlignConstants object->CellHAlign = Style;
|
||
C |
HRESULT object->put_CellHAlign(enum SftBoxHAlignConstants Style); |
||
Delphi |
object.CellHAlign := Style : TOleEnum; |
object
A SftBoxColumn object.
Style
Defines the default horizontal alignment of cell contents in this column.
Name |
Value |
Description |
0 |
The text and graphic component are left aligned. |
|
1 |
The text and graphic component are centered. |
|
2 |
The text and graphic component are right aligned. |
Comments
The CellHAlign property defines the default horizontal alignment of cell contents in this column.
The alignment applies to all cells in the column specified. Individual cells can override the defined default alignment using the Cell.TextHAlign, Cell.TextVAlign, Cell.ImageHAlign and Cell.ImageVAlign properties.