|
|
|
SftTree.GetCellTextPosPix Method |
Returns the coordinates of a cell's text component.
Deprecated - Provided for compatibility with earlier versions only - Use Cell.GetTextPositionPix instead
Syntax
VB.NET |
Boolean = object.GetCellTextPosPix(ByVal ItemIndex As Integer, ByVal ColIndex As Short, ByRef LeftPix As OLE_XPOS_PIXELS, ByRef TopPix As OLE_YPOS_PIXELS, ByRef WidthPix As OLE_XSIZE_PIXELS, ByRef HeightPix As OLE_YSIZE_PIXELS) As Boolean |
||
VB |
Boolean = object.GetCellTextPosPix(ByVal ItemIndex As Long, ByVal ColIndex As Integer, LeftPix As OLE_XPOS_PIXELS, TopPix As OLE_YPOS_PIXELS, WidthPix As OLE_XSIZE_PIXELS, HeightPix As OLE_YSIZE_PIXELS) As Boolean |
||
C#.NET |
bool Boolean = object.GetCellTextPosPix(int ItemIndex, short ColIndex, out OLE_XPOS_PIXELS LeftPix, out OLE_YPOS_PIXELS TopPix, out OLE_XSIZE_PIXELS WidthPix, out OLE_YSIZE_PIXELS HeightPix); |
||
VC++ |
VARIANT_BOOL Boolean = object->GetCellTextPosPix(long ItemIndex, short ColIndex, OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix); |
||
C |
HRESULT object->raw_GetCellTextPosPix(long ItemIndex, short ColIndex, OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix, VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.GetCellTextPosPix(ItemIndex : Integer; ColIndex : Smallint; out LeftPix : Integer; out TopPix : Integer; out WidthPix : OLE_XSIZE_PIXELS; out HeightPix : OLE_YSIZE_PIXELS) : WordBool; |
object
A SftTree object.
ItemIndex
The zero-based index of the item. 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.
LeftPix
Returns the horizontal position relative to the top, left corner of the tree control in pixels.
TopPix
Returns the vertical position relative to the top, left corner of the tree control in pixels.
WidthPix
Returns the width of the cell text in pixels.
HeightPix
Returns the height of the cell text in pixels.
Boolean
Boolean |
Description |
True |
The cell specified by ItemIndex and ColIndex is displayed and visible. |
False |
The cell specified by ItemIndex and ColIndex is not visible. The returned coordinates are not valid. |
Comments
Deprecated - Provided for compatibility with earlier versions only - Use Cell.GetTextPositionPix instead
The GetCellTextPosPix method returns the coordinates of a cell's text component.
The GetCellTextPos and GetCellTextPosPix methods are synonyms, but may use different coordinate systems.
The Cell.GetPositionPix method is used to return the overall dimensions of the cell. The Cell.GetImagePositionPix method returns the dimensions of the cell graphic.
See Also SftTree Object | Object Hierarchy