1 write to left
Microsoft.Private.Windows.Core (1)
Windows.Win32.RECT.g.cs (1)
52
this.
left
= left;
5 references to left
Microsoft.Private.Windows.Core (5)
Windows.Win32.RECT.g.cs (5)
62
internal readonly int Width => unchecked(this.right - this.
left
);
66
internal readonly bool IsEmpty => this.
left
== 0 && this.top == 0 && this.right == 0 && this.bottom == 0;
68
internal readonly int X => this.
left
;
74
public static implicit operator global::System.Drawing.Rectangle(RECT value) => new global::System.Drawing.Rectangle(value.
left
, value.top, value.Width, value.Height);
76
public static implicit operator global::System.Drawing.RectangleF(RECT value) => new global::System.Drawing.RectangleF(value.
left
, value.top, value.Width, value.Height);