[Read-only] This property returns the window handle of the HotDocs library window.
int Hwnd [ get ]
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());
}
}