7 writes to right
System.Windows.Forms (7)
winforms\Managed\System\WinForms\AxHost.cs (1)
4616dest.right = source.Width + source.X;
winforms\Managed\System\WinForms\Control.cs (3)
18363adjustRect.right = posRect.Width + posRect.X; 18642rc.right = rc.left + control.Width; 18646rc.right = rc.left + width;
winforms\Managed\System\WinForms\NativeMethods.cs (2)
4038this.right = r.Right; 4046this.right = right;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
308lprcPosRect.right = this.Host.Bounds.Width + this.Host.Bounds.X;
12 references to right
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); 18670width = rc.right - rc.left;
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),