11 writes to DisplayIndexInternal
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ColumnHeader.cs (3)
128this.DisplayIndexInternal = value; 150hdr.DisplayIndexInternal -= hdrMovedForward ? 1 : -1; 157movedHdr.DisplayIndexInternal = value;
winforms\Managed\System\WinForms\ListView.cs (8)
3657hdr.DisplayIndexInternal = index; 3659hdr.DisplayIndexInternal ++; 4976this.Columns[i].DisplayIndexInternal = indices[i]; 5692hdr.DisplayIndexInternal -= hdrMovedForward ? 1 : -1; 5697movedHdr.DisplayIndexInternal = to; 7956values[i].DisplayIndexInternal = i; 8202hdr.DisplayIndexInternal --; 8208removeHdr.DisplayIndexInternal = -1;
11 references to DisplayIndexInternal
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ColumnHeader.cs (7)
119return this.DisplayIndexInternal; 136int lowDI = Math.Min(this.DisplayIndexInternal, value); 137int hiDI = Math.Max(this.DisplayIndexInternal, value); 142bool hdrMovedForward = value > this.DisplayIndexInternal; 147if (hdr.DisplayIndex == this.DisplayIndexInternal) { 153colsOrder[ hdr.DisplayIndexInternal ] = i; 158colsOrder[ movedHdr.DisplayIndexInternal ] = movedHdr.Index;
winforms\Managed\System\WinForms\ListView.cs (4)
3661indices[i] = hdr.DisplayIndexInternal; 5694indices[i] = hdr.DisplayIndexInternal; 5698indices[movedHdr.Index] = movedHdr.DisplayIndexInternal; 8204indices[ i>index ? i-1:i ] = hdr.DisplayIndexInternal;