1 write to rowStates
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (1)
189this.rowStates = new List<DataGridViewElementStates>();
38 references to rowStates
System.Windows.Forms (38)
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (38)
402this.rowStates.Add(rowState); 605this.rowStates.Add(dataGridViewRow.State); 606Debug.Assert(this.rowStates.Count == this.SharedList.Count); 663DataGridViewElementStates rowState = this.rowStates[indexSource] & ~dgvesRemove; 668this.rowStates.Add(rowState); 731DataGridViewElementStates rowTemplateState = this.rowStates[indexSource] & ~dgvesRemove; 746this.rowStates.Add(rowTemplateState); 749this.rowStates.Add(rowTemplateState); 776this.rowStates.Add(rowTemplateState); 779this.rowStates.Add(rowTemplateState); 850this.rowStates.Add(rowState); 913this.rowStates.Add(dataGridViewRow.State); 923Debug.Assert(this.rowStates.Count == this.SharedList.Count); 968this.rowStates.Clear(); 1670this.rowStates.Insert(rowIndex, dataGridViewRow.State); 1671Debug.Assert(this.rowStates.Count == this.SharedList.Count); 1751this.rowStates.Insert(indexDestination + i, rowTemplateState); 1770this.rowStates.Insert(indexDestination, rowTemplateState); 1783Debug.Assert(this.rowStates.Count == this.SharedList.Count); 1795this.rowStates.Insert(indexDestination + i, rowTemplateState); 1812Debug.Assert(this.rowStates.Count == this.SharedList.Count); 1860this.rowStates.Insert(indexDestination, rowState); 1861Debug.Assert(this.rowStates.Count == this.SharedList.Count); 1944this.rowStates.Insert(rowIndexInserted, dataGridViewRow.State); 1945Debug.Assert(this.rowStates.Count == this.SharedList.Count); 2154this.rowStates.RemoveAt(rowIndex); 2346this.rowStates[index] = dataGridViewRow.State; 2388if ((dataGridViewCell.State & ~(dataGridViewCell.CellStateFromColumnRowStates(this.rowStates[index]))) != 0) 2404if (((this.rowStates[rowIndex] & state) != 0) != value) 2414this.rowStates[rowIndex] = this.rowStates[rowIndex] | state; 2418this.rowStates[rowIndex] = this.rowStates[rowIndex] & ~state; 2469return this.rowStates[rowIndex]; 2520DataGridViewElementStates rowStates = this.rowStates[rowIndex1]; 2521this.rowStates[rowIndex1] = this.rowStates[rowIndex2]; 2522this.rowStates[rowIndex2] = rowStates;