10 references to GetCellDisplayRectangle
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
6822
Rectangle rect =
GetCellDisplayRectangle
(columnIndex, rowIndex, cutOverflow);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (4)
158
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(_owner.OwningColumn.Index, _owner.OwningRow.Index, cutOverflow: false);
162
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(-1, _owner.OwningRow.Index, cutOverflow: false);
166
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(_owner.OwningColumn.Index, -1, cutOverflow: false);
170
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(-1, -1, cutOverflow: false);
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
1335
Rectangle rectBottomSection = DataGridView.
GetCellDisplayRectangle
(ColumnIndex, rowIndex, true);
1767
Rectangle cellBounds = DataGridView.
GetCellDisplayRectangle
(OwningColumn.Index, rowIndex, cutOverflow: false);
System\Windows\Forms\Controls\DataGridView\DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs (1)
32
Rectangle cellRect = Owner.DataGridView.
GetCellDisplayRectangle
(-1, -1, cutOverflow: false);
System.Windows.Forms.UI.IntegrationTests (2)
DataGridViewTests.cs (2)
27
Rectangle cellRectangle = dataGridView.
GetCellDisplayRectangle
(columnIndex: 0, rowIndex: 0, cutOverflow: false);
55
Rectangle cellRectangle = dataGridView.
GetCellDisplayRectangle
(columnIndex: 0, rowIndex: 0, cutOverflow: false);