You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Contains information about the size and position of a window.</summary>
21
+
/// <remarks>
22
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos">Learn more about this API from docs.microsoft.com</see>.</para>
23
+
/// </remarks>
24
+
publicpartialstructWINDOWPOS
25
+
{
26
+
/// <summary>
27
+
/// <para>Type: <b>HWND</b> A handle to the window.</para>
28
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
29
+
/// </summary>
30
+
internalHWNDhwnd;
31
+
32
+
/// <summary>
33
+
/// <para>Type: <b>HWND</b> The position of the window in Z order (front-to-back position). This member can be a handle to the window behind which this window is placed, or can be one of the special values listed with the <a href="https://docs.microsoft.com/windows/desktop/api/winuser/nf-winuser-setwindowpos">SetWindowPos</a> function.</para>
34
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
35
+
/// </summary>
36
+
internalHWNDhwndInsertAfter;
37
+
38
+
/// <summary>
39
+
/// <para>Type: <b>int</b> The position of the left edge of the window.</para>
40
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
41
+
/// </summary>
42
+
internalintx;
43
+
44
+
/// <summary>
45
+
/// <para>Type: <b>int</b> The position of the top edge of the window.</para>
46
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
47
+
/// </summary>
48
+
internalinty;
49
+
50
+
/// <summary>
51
+
/// <para>Type: <b>int</b> The window width, in pixels.</para>
52
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
53
+
/// </summary>
54
+
internalintcx;
55
+
56
+
/// <summary>
57
+
/// <para>Type: <b>int</b> The window height, in pixels.</para>
58
+
/// <para><see href="https://learn.microsoft.com/windows/win32/api/winuser/ns-winuser-windowpos#members">Read more on docs.microsoft.com</see>.</para>
0 commit comments