21 references to Height
System.Private.Windows.Core (3)
Windows.Win32.RECT.g.cs (3)
72 internal readonly global::System.Drawing.Size Size => new global::System.Drawing.Size(this.Width, this.Height); 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);
System.Windows.Forms (13)
System\Windows\Forms\Control.cs (5)
385_clientHeight = _height - rect.Height; 5429int localHeight = bounds.Height - adornmentsBeforeDpiChange.Height; 5430sh = (int)Math.Round(localHeight * dy) + adornmentsAfterDpiChange.Height; 10877rect.Height, 10894int clientHeight = height - rect.Height;
System\Windows\Forms\Control.MetafileDCWrapper.cs (1)
180cyDest = rect.Height;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarButtonAccessibleObject.cs (1)
64int y = rectangle.top + (rectangle.Height / 2);
System\Windows\Forms\Design\ComponentEditorForm.PageSelector.cs (1)
269PInvoke.PatBlt(dc, rc.left, rc.top, rc.Width, rc.Height, ROP_CODE.PATCOPY);
System\Windows\Forms\Form.cs (2)
3141if (correctClientSize.Height != currentClient.Height) 3143int delta = correctClientSize.Height - currentClient.Height;
System\Windows\Forms\ToolTip\ToolTip.cs (3)
1334p.Y = visibleRect.top + visibleRect.Height / 2; 2074if (rect.Height > currentTooltipSize.Height) 2076currentTooltipSize.Height = rect.Height;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\MultilineStringEditor.MultilineStringEditorUI.cs (1)
190return new Size(rect.Width + CaretPadding, rect.Height);
System.Windows.Forms.Primitives.TestUtilities (2)
Win32\WindowClass.cs (2)
172nHeight: bounds.Height, 190nHeight: bounds.Height,
System.Windows.Forms.Tests (2)
System\Windows\Forms\AccessibleObjects\ListViewGroup.ListViewGroupAccessibleObjectTests.cs (2)
304int expectedHeight = groupRect.Height; 342int expectedHeight = groupRect.Height;