Exemplo n.º 1
0
def controlid(handle):
    "Return the ID of the control"
    return win32functions.GetWindowLong(handle, win32defines.GWL_ID)
Exemplo n.º 2
0
def style(handle):
    "Return the style of the window"
    return win32functions.GetWindowLong(handle, win32defines.GWL_STYLE)
Exemplo n.º 3
0
def exstyle(handle):
    "Return the extended style of the window"
    return win32functions.GetWindowLong(handle, win32defines.GWL_EXSTYLE)
Exemplo n.º 4
0
def userdata(handle):
    "Return the value of any userdata associated with the window"
    return win32functions.GetWindowLong(handle, win32defines.GWL_USERDATA)