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