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