Application.Hwnd Property

[Read-only] This property returns the window handle of the HotDocs library window.

Syntax

int Hwnd [ get ]

Example

The following Visual C# example displays the HotDocs library window handle:

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
        App.Visible = true;
        MessageBox.Show(app.Hwnd.ToString());
    }
}