|
|
|
SftTree.CellPictureAlign Property |
Defines the position of the graphic displayed in an item's cell.
Deprecated - Provided for compatibility with earlier versions only - Use Cell.ImageHAlign and Cell.ImageVAlign instead
Syntax
VB.NET |
Align = object.get_CellPictureAlign(ByVal ItemIndex As Integer, ByVal ColIndex As Short) As SftTreeAlignConstants |
||
VB |
Align = object.CellPictureAlign(ByVal ItemIndex As Long, ByVal ColIndex As Integer) As SftTreeAlignConstants |
||
C#.NET |
SftTreeAlignConstants Align = object.get_CellPictureAlign(int ItemIndex, short ColIndex); |
||
VC++ |
enum SftTreeAlignConstants Align = object->CellPictureAlign[long ItemIndex][short ColIndex];
|
||
C |
HRESULT object->get_CellPictureAlign(long ItemIndex, short ColIndex, enum SftTreeAlignConstants* Align); |
||
Delphi |
Align := object.CellPictureAlign[ItemIndex : Integer; ColIndex : Smallint] : TOleEnum; |
||
VB.NET |
object.set_CellPictureAlign(ByVal ItemIndex As Integer, ByVal ColIndex As Short, ByVal Align As SftTreeAlignConstants) |
||
VB |
object.CellPictureAlign(ByVal ItemIndex As Long, ByVal ColIndex As Integer) = Align As SftTreeAlignConstants |
||
C#.NET |
void object.set_CellPictureAlign(int ItemIndex, short ColIndex, SftTreeAlignConstants Align); |
||
VC++ |
enum SftTreeAlignConstants object->CellPictureAlign[long ItemIndex][short ColIndex] = Align;
|
||
C |
HRESULT object->put_CellPictureAlign(long ItemIndex, short ColIndex, enum SftTreeAlignConstants Align); |
||
Delphi |
object.CellPictureAlign[ItemIndex : Integer; ColIndex : Smallint] := Align : TOleEnum; |
object
A SftTree object.
ItemIndex
The zero-based item index. The combination of ItemIndex and ColIndex describes an individual cell.
ColIndex
The zero-based column number. The combination of ItemIndex and ColIndex describes an individual cell.
Align
Defines the position of the graphic displayed in an item's cell.
One value of each of the following tables can be combined and used as Align value:
Horizontal Alignment |
Value |
Description |
0 |
The graphic is on the left of the cell text. If no horizontal alignment value is specified, this is the default. |
|
1 |
The graphic is centered in the cell. The cell text is not displayed. |
|
2 |
The graphic is on the right of the cell text. |
|
Vertical Alignment |
Value |
Description |
16 |
The graphic is vertically centered. If no vertical alignment value is specified, this is the default. |
|
32 |
The graphic is aligned with the top of the available area. |
|
64 |
The graphic is aligned with the bottom of the available area. |
Comments
Deprecated - Provided for compatibility with earlier versions only - Use Cell.ImageHAlign and Cell.ImageVAlign instead
The CellPictureAlign property defines the position of the graphic displayed in an item's cell.
The cell graphic is defined using the Cell.Image property.
See Also SftTree Object | Object Hierarchy