10 references to GetCellDisplayRectangle
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
6819
Rectangle rect =
GetCellDisplayRectangle
(columnIndex, rowIndex, cutOverflow);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (4)
157
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(_owner.OwningColumn.Index, _owner.OwningRow.Index, cutOverflow: false);
161
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(-1, _owner.OwningRow.Index, cutOverflow: false);
165
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(_owner.OwningColumn.Index, -1, cutOverflow: false);
169
cellBounds = _owner.DataGridView.
GetCellDisplayRectangle
(-1, -1, cutOverflow: false);
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
1328
Rectangle rectBottomSection = DataGridView.
GetCellDisplayRectangle
(ColumnIndex, rowIndex, true);
1760
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)
28
Rectangle cellRectangle = dataGridView.
GetCellDisplayRectangle
(columnIndex: 0, rowIndex: 0, cutOverflow: false);
107
Rectangle cellRectangle = dataGridView.
GetCellDisplayRectangle
(columnIndex: 0, rowIndex: 0, cutOverflow: false);