property windowHandle

(r/o) int32 windowHandle;

Typ

Zugriff

This property returns the standard native HWND handle for the window. This handle allows you to use native Win32 API calls to manipulate the window.
var wndBox = scene.rootBox;
if (wndBox)
{
    shell.print("Window Handle Value is: " + windowHandle);
}