11 writes to DisplayIndexInternal
System.Windows.Forms (11)
System\Windows\Forms\Controls\ListView\ColumnHeader.cs (3)
122DisplayIndexInternal = value; 148hdr.DisplayIndexInternal -= hdrMovedForward ? 1 : -1; 159movedHdr.DisplayIndexInternal = value;
System\Windows\Forms\Controls\ListView\ListView.ColumnHeaderCollection.cs (3)
273header.DisplayIndexInternal = i; 525hdr.DisplayIndexInternal--; 532removeHdr.DisplayIndexInternal = -1;
System\Windows\Forms\Controls\ListView\ListView.cs (5)
3868hdr.DisplayIndexInternal = index; 3872hdr.DisplayIndexInternal++; 5323Columns[i].DisplayIndexInternal = indices[i]; 6220hdr.DisplayIndexInternal -= hdrMovedForward ? 1 : -1; 6226movedHdr!.DisplayIndexInternal = to;
11 references to DisplayIndexInternal
System.Windows.Forms (11)
System\Windows\Forms\Controls\ListView\ColumnHeader.cs (7)
112return DisplayIndexInternal; 131int lowDI = Math.Min(DisplayIndexInternal, value); 132int hiDI = Math.Max(DisplayIndexInternal, value); 137bool hdrMovedForward = value > DisplayIndexInternal; 142if (hdr.DisplayIndex == DisplayIndexInternal) 153colsOrder[hdr.DisplayIndexInternal] = i; 160colsOrder[movedHdr.DisplayIndexInternal] = movedHdr.Index;
System\Windows\Forms\Controls\ListView\ListView.ColumnHeaderCollection.cs (1)
528indices[i > index ? i - 1 : i] = hdr.DisplayIndexInternal;
System\Windows\Forms\Controls\ListView\ListView.cs (3)
3875indices[i] = hdr.DisplayIndexInternal; 6223indices[i] = hdr.DisplayIndexInternal; 6227indices[movedHdr.Index] = movedHdr.DisplayIndexInternal;