Implemented interface member:
property
Bounds
System.Windows.Forms.Layout.IArrangedElement.Bounds
10 references to Bounds
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ArrangedElement.cs (1)
64Rectangle displayRectangle = this.Bounds;
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (9)
1172freedSpace += DisplayRectangle.Right - lastCell.Bounds.Right; 1245int spaceOccupiedByCell = cell.Margin.Horizontal + cell.Bounds.Width; 1365lastCellMargin.Left = Math.Max(0,locationToDrag.X - nextCell.Bounds.Right); 1688freedSpace += DisplayRectangle.Bottom - lastCell.Bounds.Bottom; 1754int spaceToFree = (lastCell != null)? lastCell.Bounds.Bottom - newBounds.Height : 0; 1817if (cell.Bounds.Contains(locationToDrag)) { 1824if (cell.Bounds.Y >= locationToDrag.Y) { 1897lastCellMargin.Top = Math.Max(0,locationToDrag.Y - nextCell.Bounds.Bottom); 1959int spaceOccupiedByCell = cell.Margin.Vertical + cell.Bounds.Height;