property windowHandle

(r/o) int32 windowHandle;

Typ

Zugriff

This property returns the native window handle for the dhtml control. This handle can be used for making native OS API calls on the window.
var bx = scene.getBoxById("myBox");
if (bx)
{
    var wnd = bx.windowHandle;
    Foo(wnd); // custom processing would go here.
}