|
|
|
VirtualItem.CellPictureAlign Property |
Defines the position of the graphic displayed in the item's cell.
Deprecated - Provided for compatibility with earlier versions only - Use VirtualItem.Item.Cell.ImageHAlign and VirtualItem.Item.Cell.ImageVAlign instead
Syntax
VB.NET |
object.CellPictureAlign(ByVal ColIndex As Short) = Align As SftTreeAlignConstants |
||
VB |
object.CellPictureAlign(ByVal ColIndex As Integer) = Align As SftTreeAlignConstants |
||
C#.NET |
void object.set_CellPictureAlign(short ColIndex, SftTreeAlignConstants Align); |
||
VC++ |
enum SftTreeAlignConstants object->CellPictureAlign[short ColIndex] = Align;
|
||
C |
HRESULT object->put_CellPictureAlign(short ColIndex, enum SftTreeAlignConstants Align); |
||
Delphi |
object.CellPictureAlign[ColIndex : Smallint] := Align : TOleEnum; |
object
A VirtItem object.
ColIndex
The zero-based column number. The combination of ColIndex and the VirtualItem event's RowIndex parameter 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 VirtualItem.Item.Cell.ImageHAlign and VirtualItem.Item.Cell.ImageVAlign instead
The CellPictureAlign property defines the position of the graphic displayed in the item's cell.
The VirtualItem.CellPictureAlign property is used while handling a VirtualItem event to define the position of the graphic for the cell described by ColIndex and the VirtualItem event's RowIndex parameter.
See Also VirtualItem Object | Object Hierarchy