Hide

SftTree/OCX 7.5 - ActiveX Tree Control

Display
Print

hWnd Property, SftTree Object

Returns the tree control's window handle.

Syntax

Get

VB.NETHandle = object.hWnd As Integer
VBHandle = object.hWnd As OLE_HANDLE
C#.NETint Handle = object.hWnd;
VC++OLE_HANDLE Handle = object->hWnd;
OLE_HANDLE Handle = object->GethWnd();
CHRESULT object->get_hWnd(OLE_HANDLE* Handle);

object

A SftTree object.

Handle

Returns the tree control's window handle.

Comments

The hWnd property returns the tree control's window handle.

The hWnd property should not be used and may cause incompatibilities with future releases of SftTree/OCX.

Examples

C++

    m_vTree->CancelMode();

    m_ItemMenu.TrackPopupMenu(TPM_LEFTALIGN|TPM_LEFTBUTTON, pt.x, pt.y, this);
}

void CBookTableDlg::OnContextMenuSftTree1(short Button, short Shift, long x, long y)
{
    CPoint pt(x, y);
    ::MapWindowPoints((HWND) m_vTree->hWnd, NULL, &pt, 1);

    // Determine click context menu for header or item
    long l, t, w, h;
    m_vTree->Headers->GetPositionPix(&l, &t, &w, &h);
    if (x >= l && x < l + w && y >= t && y <= t + h) {
        HeaderMenu(pt);
        return;

See Also SftTree Object | Object Hierarchy


Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.


Spring Break!

Our offices will be closed this week (March 18 through March 22).

We'll be back March 24 to address any pending sales and support issues.