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