6 references to GetContentBounds
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (1)
608mouseInContentBounds = GetContentBounds(e.RowIndex).Contains(e.X, e.Y);
winforms\Managed\System\WinForms\DataGridViewCell.cs (3)
144return GetContentBounds(this.RowIndex); 3354this.DataGridView.CellMouseDownInContentBounds = GetContentBounds(e.RowIndex).Contains(e.X, e.Y); 3461if (e.Button == MouseButtons.Left && GetContentBounds(e.RowIndex).Contains(x, y))
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (1)
1040mouseInContentBounds = GetContentBounds(e.RowIndex).Contains(e.X, e.Y);
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (1)
538Rectangle linkBounds = GetContentBounds(rowIndex);