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