1 write to top
Microsoft.Private.Windows.Core (1)
Windows.Win32.RECT.g.cs (1)
53 this.top = top;
5 references to top
Microsoft.Private.Windows.Core (5)
Windows.Win32.RECT.g.cs (5)
64 internal readonly int Height => unchecked(this.bottom - this.top); 66 internal readonly bool IsEmpty => this.left == 0 && this.top == 0 && this.right == 0 && this.bottom == 0; 70 internal readonly int Y => this.top; 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);