7 writes to bottom
System.Windows.Forms (7)
winforms\Managed\System\WinForms\AxHost.cs (1)
4617dest.bottom = source.Height + source.Y;
winforms\Managed\System\WinForms\Control.cs (3)
18364adjustRect.bottom = posRect.Height + posRect.Y; 18643rc.bottom = rc.top + control.Height; 18647rc.bottom = rc.top + height;
winforms\Managed\System\WinForms\NativeMethods.cs (2)
4039this.bottom = r.Bottom; 4047this.bottom = bottom;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
309lprcPosRect.bottom = this.Host.Bounds.Height + this.Host.Bounds.Y;
12 references to bottom
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Control.cs (5)
15440Debug.WriteLineIf(CompModSwitches.ActiveX.TraceInfo, "AxSource:SetObjectRects(" + lprcClipRect.left + ", " + lprcClipRect.top + ", " + lprcClipRect.right + ", " + lprcClipRect.bottom + ")"); 16685rc = new NativeMethods.RECT(prcBounds.left, prcBounds.top, prcBounds.right, prcBounds.bottom); 18344Rectangle posRect = Rectangle.FromLTRB(lprcPosRect.left, lprcPosRect.top, lprcPosRect.right, lprcPosRect.bottom); 18390Rectangle clipRect = Rectangle.FromLTRB(lprcClipRect.left, lprcClipRect.top, lprcClipRect.right, lprcClipRect.bottom); 18671height = rc.bottom - rc.top;
winforms\Managed\System\WinForms\NativeMethods.cs (1)
4061return "Left = " + left + " Top " + top + " Right = " + right + " Bottom = " + bottom;
winforms\Managed\System\WinForms\VisualStyles\VisualStyleRenderer.cs (5)
364return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom); 523return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom); 547return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom); 881return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom); 906return Rectangle.FromLTRB(rect.left, rect.top, rect.right, rect.bottom);
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
493NativeMethods.COMRECT.FromXYWH(0, 0, lprcPosRect.right - lprcPosRect.left, lprcPosRect.bottom - lprcPosRect.top),