8 references to GetCellDisplayRectangle
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGridViewCell.cs (4)
4924
cellBounds = this.owner.DataGridView.
GetCellDisplayRectangle
(this.owner.OwningColumn.Index, this.owner.OwningRow.Index, false /*cutOverflow*/);
4928
cellBounds = this.owner.DataGridView.
GetCellDisplayRectangle
(-1, this.owner.OwningRow.Index, false /*cutOverflow*/);
4932
cellBounds = this.owner.DataGridView.
GetCellDisplayRectangle
(this.owner.OwningColumn.Index, -1, false /*cutOverflow*/);
4936
cellBounds = this.owner.DataGridView.
GetCellDisplayRectangle
(-1, -1, false /*cutOverflow*/);
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (2)
1584
Rectangle rectBottomSection = this.DataGridView.
GetCellDisplayRectangle
(this.ColumnIndex, rowIndex, true);
2000
Rectangle cellBounds = this.DataGridView.
GetCellDisplayRectangle
(this.OwningColumn.Index, rowIndex, false /*cutOverflow*/);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
6886
Rectangle rect =
GetCellDisplayRectangle
(columnIndex, rowIndex, cutOverflow);
winforms\Managed\System\WinForms\DataGridViewTopLeftHeaderCell.cs (1)
480
Rectangle cellRect = this.Owner.DataGridView.
GetCellDisplayRectangle
(-1, -1, false /*cutOverflow*/);