13 references to GetSpecifiedBounds
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Control.cs (1)
2840return CommonProperties.GetSpecifiedBounds(this).Size;
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
1193int width = CommonProperties.GetSpecifiedBounds(this).Width;
winforms\Managed\System\WinForms\Form.cs (1)
665this.Size = CommonProperties.GetSpecifiedBounds(this).Size;
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (2)
183element.SetBounds(GetSpecifiedBounds(element), BoundsSpecified.None); 275Rectangle originalBounds = CommonProperties.GetSpecifiedBounds(element);
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (2)
684element.SetBounds(CommonProperties.GetSpecifiedBounds(element), BoundsSpecified.None); 692element.SetBounds(CommonProperties.GetSpecifiedBounds(element), BoundsSpecified.All);
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (1)
589get { return CommonProperties.GetSpecifiedBounds(_element).Size; }
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
861return CommonProperties.GetSpecifiedBounds(element).Size;
winforms\Managed\System\WinForms\PictureBox.cs (1)
1219return CommonProperties.GetSpecifiedBounds(this).Size;
winforms\Managed\System\WinForms\ToolStrip.cs (2)
267Rectangle bounds = CommonProperties.GetSpecifiedBounds(this); 4696Size size = CommonProperties.GetSpecifiedBounds(this).Size;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
167Rectangle bounds = CommonProperties.GetSpecifiedBounds(TextBox);