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