2 writes to selectedBandSnapshotIndexes
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
20477this.selectedBandSnapshotIndexes = new DataGridViewIntLinkedList(this.selectedBandIndexes); 20575this.selectedBandSnapshotIndexes = null;
26 references to selectedBandSnapshotIndexes
System.Windows.Forms (26)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (26)
13686if (this.selectedBandSnapshotIndexes != null) 13688this.selectedBandSnapshotIndexes.Clear(); 15977if (this.selectedBandSnapshotIndexes != null) 15979columnEntries = this.selectedBandSnapshotIndexes.Count; 15983int columnIndex = this.selectedBandSnapshotIndexes[columnEntry]; 15986this.selectedBandSnapshotIndexes[columnEntry] = columnIndex + 1; 16057if (this.selectedBandSnapshotIndexes != null) 16059rowEntries = this.selectedBandSnapshotIndexes.Count; 16063int rowIndex = this.selectedBandSnapshotIndexes[rowEntry]; 16066this.selectedBandSnapshotIndexes[rowEntry] = rowIndex + insertionCount; 16113if (this.selectedBandSnapshotIndexes != null) 16115rowEntries = this.selectedBandSnapshotIndexes.Count; 16119int rowIndex = this.selectedBandSnapshotIndexes[rowEntry]; 16122this.selectedBandSnapshotIndexes[rowEntry] = rowIndex + dataGridViewRows.Length; 17785if (this.selectedBandSnapshotIndexes != null) 17787rowEntries = this.selectedBandSnapshotIndexes.Count; 17791int rowIndex = this.selectedBandSnapshotIndexes[rowEntry]; 17794this.selectedBandSnapshotIndexes.RemoveAt(rowEntry); 17801this.selectedBandSnapshotIndexes[rowEntry] = rowIndex - 1; 20478while (this.selectedBandSnapshotIndexes.Count > remainingSelectedRows) 20480int rowIndex = this.selectedBandSnapshotIndexes[remainingSelectedRows]; 28376if (this.selectedBandSnapshotIndexes != null) 28378row1Selected = this.selectedBandSnapshotIndexes.IndexOf(rowIndex1); 28379row2Selected = this.selectedBandSnapshotIndexes.IndexOf(rowIndex2); 28382this.selectedBandSnapshotIndexes[row1Selected] = rowIndex2; 28386this.selectedBandSnapshotIndexes[row2Selected] = rowIndex1;