Property wnd.Is0
Overload
Returns true
if the window handle is 0 (this variable == default(wnd)
).
public bool Is0 { get; }
Property Value
Examples
wnd w = wnd.find("Window*");
if(w.Is0) { print.it("window not found"); return; }
Returns true
if the window handle is 0 (this variable == default(wnd)
).
public bool Is0 { get; }
wnd w = wnd.find("Window*");
if(w.Is0) { print.it("window not found"); return; }