public bool MoveWindow(int x, int y, int nWidth, int nHeight, bool bRepaint) { return(User32APIs.MoveWindow(Hwnd, x, y, nWidth, nHeight, bRepaint)); }
public IntPtr GetNextDlgTabItem(IntPtr hWndCtl, bool bPrevious) { return(User32APIs.GetNextDlgTabItem(Hwnd, hWndCtl, bPrevious)); }
public IntPtr SendDlgItemMessage(int nID, uint message, IntPtr wParam, IntPtr lParam) { return(User32APIs.SendDlgItemMessage(Hwnd, nID, message, wParam, lParam)); }
public bool KillTimer(UIntPtr nIDEvent) { return(User32APIs.KillTimer(Hwnd, nIDEvent)); }
public bool CheckRadioButton(int nIDFirstButton, int nIDLastButton, int nIDCheckButton) { return(User32APIs.CheckRadioButton(Hwnd, nIDFirstButton, nIDLastButton, nIDCheckButton)); }
public bool ShowOwnedPopups(bool bShow) { return(User32APIs.ShowOwnedPopups(Hwnd, bShow)); }
public bool LockWindowUpdate(bool bLock) { return(User32APIs.LockWindowUpdate(Hwnd, bLock)); }
public IntPtr GetWindowDC() { return(User32APIs.GetWindowDC(Hwnd)); }
public int ReleaseDC(IntPtr hDC) { return(User32APIs.ReleaseDC(Hwnd, hDC)); }
public bool IsWindow() { return(Hwnd != null && User32APIs.IsWindow(Hwnd)); }
public bool DestroyWindow() { return(User32APIs.DestroyWindow(Hwnd)); }
public bool BringWindowToTop() { return(User32APIs.BringWindowToTop(Hwnd)); }
public uint ArrangeIconicWindows() { return(User32APIs.ArrangeIconicWindows(Hwnd)); }
public bool SetWindowPos(IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint nFlags) { return(User32APIs.SetWindowPos(Hwnd, hWndInsertAfter, x, y, cx, cy, nFlags)); }
public bool ShowWindowAsync(int nCmdShow) { return(User32APIs.ShowWindowAsync(Hwnd, nCmdShow)); }
public void PrintClient(IntPtr hDC, uint dwFlags) { User32APIs.PrintClient(Hwnd, hDC, dwFlags); }
public bool IsWindowVisible() { return(User32APIs.IsWindowVisible(Hwnd)); }
public bool UpdateWindow() { return(User32APIs.UpdateWindow(Hwnd)); }
public IntPtr GetDCEx(IntPtr hRgnClip, uint flags) { return(User32APIs.GetDCEx(Hwnd, hRgnClip, flags)); }
public void SetRedraw(bool bRedraw) { User32APIs.SetRedraw(Hwnd, bRedraw); }
public IntPtr SetTimer(UIntPtr nIDEvent, uint uElapse, IntPtr lpTimerProc) { return(User32APIs.SetTimer(Hwnd, nIDEvent, uElapse, lpTimerProc)); }
public int GetUpdateRgn(IntPtr hRgn, bool bErase) { return(User32APIs.GetUpdateRgn(Hwnd, hRgn, bErase)); }
public bool CheckDlgButton(int nIDButton, uint nCheck) { return(User32APIs.CheckDlgButton(Hwnd, nIDButton, nCheck)); }
public bool Invalidate(bool bErase) { return(User32APIs.Invalidate(Hwnd, bErase)); }
public int GetWindowLong(int nIndex) { return(User32APIs.GetWindowLongW(Hwnd, nIndex)); }
public void InvalidateRgn(IntPtr hRgn, bool bErase) { User32APIs.InvalidateRgn(Hwnd, hRgn, bErase); }
public uint IsDlgButtonChecked(int nIDButton) { return(User32APIs.IsDlgButtonChecked(Hwnd, nIDButton)); }
public bool ValidateRgn(IntPtr hRgn) { return(User32APIs.ValidateRgn(Hwnd, hRgn)); }
public bool SetDlgItemInt(int nID, uint nValue, bool bSigned) { return(User32APIs.SetDlgItemInt(Hwnd, nID, nValue, bSigned)); }
public bool IsZoomed() { return(User32APIs.IsZoomed(Hwnd)); }