pyWinAuto: pywinauto.controls.common_controls.StatusBarWrapper -- Class that wraps Windows Status Bar common control

StatusBarWrapper

Class that wraps Windows Status Bar common control


Attributes

a handle

None

a windowclasses

['msctls_statusbar32',
 'HSStatusBar',
 'WindowsForms\\d*\\.msctls_statusbar32\\..*']

a friendlyclassname

'StatusBar'

Methods

f __eq__(self, other) ...

Returns True if the handles of both controls are the same

f __init__(self, hwnd) ...

Initialise the instance

f BorderWidths(self) ...

Return the border widths of the StatusBar

A dictionary of the 3 available widths is returned: Horizontal - the horizontal width Vertical - The width above and below the status bar parts Inter - The width between parts of the status bar

f PartCount(self) ...

Return the number of parts

f PartRightEdges(self) ...

Return the widths of the parts

f GetPartRect(self, part_index) ...

Return the rectangle of the part specified by part_index

f ClientRects(self) ...

Return the client rectangles for the control

f GetPartText(self, part_index) ...

Return the text of the part specified by part_index

f Texts(self) ...

Return the texts for the control

See the source for more information.