|
|
|
SftTree.GetItemPosPix Method |
Returns the coordinates of an item.
Deprecated - Provided for compatibility with earlier versions only - Use Item.GetPositionPix instead
Syntax
VB.NET |
Boolean = object.GetItemPosPix(ByVal ItemIndex As Integer, 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.GetItemPosPix(ByVal ItemIndex As Long, 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.GetItemPosPix(int ItemIndex, 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->GetItemPosPix(long ItemIndex, OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix); |
||
C |
HRESULT object->raw_GetItemPosPix(long ItemIndex, OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix, VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.GetItemPosPix(ItemIndex : Integer; 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 item index.
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 item in pixels.
HeightPix
Returns the height of the item in pixels.
Boolean
Boolean |
Description |
True |
The item specified by ItemIndex is displayed and visible. |
False |
The item specified by ItemIndex is not visible. The returned coordinates are not valid. |
Comments
Deprecated - Provided for compatibility with earlier versions only - Use Item.GetPositionPix instead
The GetItemPosPix method returns the coordinates of an item.
The GetItemPos and GetItemPosPix methods are synonyms, but may use different coordinate systems.
The position returned includes the row header (if present). The width of the row header area can be determined using the RowHeaders.Width property.
See Also SftTree Object | Object Hierarchy