5 references to CellStateFromColumnRowStates
System.Windows.Forms (5)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
1206cellState = this.CellStateFromColumnRowStates(rowState);
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
2009DataGridViewElementStates cellState = this.CellStateFromColumnRowStates(rowState);
winforms\Managed\System\WinForms\DataGridViewRow.cs (2)
1640cellState = cell.CellStateFromColumnRowStates(rowState); 1727cellState = cell.CellStateFromColumnRowStates(rowState);
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (1)
2388if ((dataGridViewCell.State & ~(dataGridViewCell.CellStateFromColumnRowStates(this.rowStates[index]))) != 0)