DialogWrapper
Wrap a dialog
The DialogWrapper class is accessible via the pywinauto.controls.win32_controls module.
Attributes
Methods
f __init__(self, hwnd) ...
Initialize the DialogWrapper
The only extra functionality here is to modify self.friendlyclassname to make it "Dialog" if the class is "#32770" otherwise to leave it the same as the window class.
f ClientAreaRect(self) ...
Return the client area rectangle
From MSDN The client area of a control is the bounds of the control, minus the nonclient elements such as scroll bars, borders, title bars, and menus.
See the source for more information.