Desktop Functions: Smart Device Functions:
|
Search Results for "SetWindowPosFlags" in [All]coredll1: SetWindowPos
private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, SetWindowPosFlags uFlags);
private enum SetWindowPosFlags : uint
SetWindowPosFlags.SynchronousWindowPosition |
SetWindowPosFlags.IgnoreMove |
SetWindowPosFlags.IgnoreResize); user322: SetWindowPos
static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, SetWindowPosFlags uFlags);
Private Shared Function SetWindowPos(ByVal hWnd As IntPtr, ByVal hWndInsertAfter As IntPtr, ByVal X As Integer, ByVal Y As Integer, ByVal cx As Integer, ByVal cy As Integer, ByVal uFlags As SetWindowPosFlags) As Boolean
public enum SetWindowPosFlags : uint
SetWindowPosFlags.SWP_SHOWWINDOW); Enums
private enum SetWindowPosFlags : uint
Private Enum SetWindowPosFlags As UInteger |