SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Returns the column number for given coordinates.
VB.NET | Boolean = object.CalcColumnFromPosPix(ByVal XPosPix As OLE_XPOS_PIXELS, ByVal YPosPix As OLE_YPOS_PIXELS, ByRef ColIndex As Short) As Boolean |
VB | Boolean = object.CalcColumnFromPosPix(ByVal XPosPix As OLE_XPOS_PIXELS, ByVal YPosPix As OLE_YPOS_PIXELS, ColIndex As Integer) As Boolean |
C#.NET | bool Boolean = object.CalcColumnFromPosPix(OLE_XPOS_PIXELS XPosPix, OLE_YPOS_PIXELS YPosPix, out short ColIndex); |
VC++ | VARIANT_BOOL Boolean = object->CalcColumnFromPosPix(OLE_XPOS_PIXELS XPosPix, OLE_YPOS_PIXELS YPosPix, short* ColIndex); |
C | HRESULT object->raw_CalcColumnFromPosPix(OLE_XPOS_PIXELS XPosPix, OLE_YPOS_PIXELS YPosPix, short* ColIndex, VARIANT_BOOL* Boolean); |
object
XPosPix
The horizontal position relative to the top, left corner of the tree control in pixels.
YPosPix
The vertical position relative to the top, left corner of the tree control in pixels.
ColIndex
Returns the column number at the specified coordinates xPosPix, yPosPix.
Boolean
Boolean | Description |
---|---|
True | A column was located at the specified coordinates xPosPix, yPosPix. |
False | No column was located at the specified coordinates xPosPix, yPosPix. |
The CalcColumnFromPosPix method returns the column number for given coordinates.
The CalcColumnFromPos and CalcColumnFromPosPix methods are synonyms, but may use different coordinate systems.
This method returns the column number ColIndex at the coordinates described by xPosPix, yPosPix. This position may be located above an item or a column header. CalcCellFromPosPix can be used to determine the cell. CalcIndexFromPosPix can be used to determine the index of the item.
See Also SftTree Object | Object Hierarchy