1 write to _rowStates
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (1)
86
_rowStates
= [];
38 references to _rowStates
System.Windows.Forms (38)
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (38)
255
_rowStates
.Add(rowState);
441
_rowStates
.Add(dataGridViewRow.State);
442
Debug.Assert(
_rowStates
.Count == SharedList.Count);
503
DataGridViewElementStates rowState =
_rowStates
[indexSource] & ~dgvesRemove;
509
_rowStates
.Add(rowState);
576
DataGridViewElementStates rowTemplateState =
_rowStates
[indexSource] & ~dgvesRemove;
591
_rowStates
.Add(rowTemplateState);
596
_rowStates
.Add(rowTemplateState);
624
_rowStates
.Add(rowTemplateState);
629
_rowStates
.Add(rowTemplateState);
705
_rowStates
.Add(rowState);
767
_rowStates
.Add(dataGridViewRow.State);
778
Debug.Assert(
_rowStates
.Count == SharedList.Count);
822
_rowStates
.Clear();
1542
_rowStates
.Insert(rowIndex, dataGridViewRow.State);
1543
Debug.Assert(
_rowStates
.Count == SharedList.Count);
1622
_rowStates
.Insert(indexDestination + i, rowTemplateState);
1641
_rowStates
.Insert(indexDestination, rowTemplateState);
1654
Debug.Assert(
_rowStates
.Count == SharedList.Count);
1666
_rowStates
.Insert(indexDestination + i, rowTemplateState);
1683
Debug.Assert(
_rowStates
.Count == SharedList.Count);
1735
_rowStates
.Insert(indexDestination, rowState);
1736
Debug.Assert(
_rowStates
.Count == SharedList.Count);
1816
_rowStates
.Insert(rowIndexInserted, dataGridViewRow.State);
1817
Debug.Assert(
_rowStates
.Count == SharedList.Count);
2029
_rowStates
.RemoveAt(rowIndex);
2229
_rowStates
[index] = dataGridViewRow.State;
2273
if ((dataGridViewCell.State & ~(dataGridViewCell.CellStateFromColumnRowStates(
_rowStates
[index]))) != 0)
2295
if (((
_rowStates
[rowIndex] & state) != 0) != value)
2304
_rowStates
[rowIndex] =
_rowStates
[rowIndex] | state;
2308
_rowStates
[rowIndex] =
_rowStates
[rowIndex] & ~state;
2366
return
_rowStates
[rowIndex];
2415
(
_rowStates
[rowIndex1],
_rowStates
[rowIndex2]) = (
_rowStates
[rowIndex2],
_rowStates
[rowIndex1]);