Implemented interface member:
property
Bounds
System.Windows.Forms.Layout.IArrangedElement.Bounds
10 references to Bounds
System.Windows.Forms (10)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (3)
286freedSpace += DisplayRectangle.Right - lastCell.Bounds.Right; 363int spaceOccupiedByCell = cell.Margin.Horizontal + cell.Bounds.Width; 496lastCellMargin.Left = Math.Max(0, locationToDrag.X - nextCell.Bounds.Right);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (6)
288freedSpace += DisplayRectangle.Bottom - lastCell.Bounds.Bottom; 356int spaceToFree = (lastCell is not null) ? lastCell.Bounds.Bottom - newBounds.Height : 0; 419if (cell.Bounds.Contains(locationToDrag)) 427if (cell.Bounds.Y >= locationToDrag.Y) 506lastCellMargin.Top = Math.Max(0, locationToDrag.Y - nextCell.Bounds.Bottom); 573int spaceOccupiedByCell = cell.Margin.Vertical + cell.Bounds.Height;
System\Windows\Forms\Layout\ArrangedElement.cs (1)
59Rectangle displayRectangle = Bounds;