This is what i do and no that function is for creating child windows inside other plus windows
calling the windows api EnableWindow does what you want though
//call this on the plus window to lock
code:
Interop.Call('User32','EnableWindow',wnd.Handle,0);
//call this on the plus window to unlock
code:
Interop.Call('User32','EnableWindow',wnd.Handle,1);