|
|
|
SftTreeFooters.GetPositionPix Method |
Returns the coordinates of the combined row/column footer and all column footers.
Syntax
VB.NET |
Boolean = object.GetPositionPix(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.GetPositionPix(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.GetPositionPix(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->GetPositionPix(OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix); |
||
C |
HRESULT object->raw_GetPositionPix(OLE_XPOS_PIXELS* LeftPix, OLE_YPOS_PIXELS* TopPix, OLE_XSIZE_PIXELS* WidthPix, OLE_YSIZE_PIXELS* HeightPix, VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.GetPositionPix(out LeftPix : Integer; out TopPix : Integer; out WidthPix : OLE_XSIZE_PIXELS; out HeightPix : OLE_YSIZE_PIXELS) : WordBool; |
object
A SftTreeFooters object.
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 column footer in pixels.
HeightPix
Returns the height of the column footer in pixels.
Span
Returns the number of columns that the column footer occupies.
Boolean
Boolean |
Description |
True |
The column footers are displayed and visible. |
False |
The column footers are not visible. The returned coordinates are not valid. |
Comments
The GetPositionPix method returns the coordinates of the combined row/column footer and all column footers.
The Footers.GetPosition and Footers.GetPositionPix methods are synonyms, but may use different coordinate systems.
The Footer.GetPosition method can be used to retrieve the coordinates of one column footer.
See Also SftTreeFooters Object | Object Hierarchy