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