| ZennoLab.Emulation Assembly > ZennoLab.Emulation Namespace > Emulator Class : MaximizeWindow Method |
Type: System.String
The header of the window.
Type: System.Boolean
true if need to show the window on top of all; otherwise, false. Default value is false.
Type: System.String
The header of the window.
Type: System.Boolean
true if need to show the window on top of all; otherwise, false. Default value is false.
Type: System.String
The answer with information about the success of the current command's execution. If current command was successful then this answer is "ok"; otherwise message describing the error.
For using of this method not required the call ActivateWindow method.
// maximize the window string result = Emulator.MaximizeWindow("TestForm"); // check the result if (result == "ok" && !Emulator.ErrorDetected) return "Window was maximize"; else return "Fail";
// maximize the window $result = ZennoLab\Emulation\Emulator::MaximizeWindow("TestForm"); // check the result if ($result == "ok" && !ZennoLab\Emulation\Emulator::ErrorDetected) return "Window was maximize"; else return "Fail";
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.