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