8 writes to index
System.Windows.Forms (8)
winforms\Managed\System\WinForms\TreeNode.cs (5)
1162
newOrder[i].
index
= i;
1186
newOrder[i].
index
= i;
1634
node.
index
= index;
1636
(children[i] = children[i-1]).
index
= i;
1786
(parent.children[i] = parent.children[i+1]).
index
= i;
winforms\Managed\System\WinForms\TreeNodeCollection.cs (3)
73
value.
index
= index;
333
node.
index
= fixedIndex + delta;
339
node.
index
= owner.childCount;
8 references to index
System.Windows.Forms (8)
winforms\Managed\System\WinForms\TreeNode.cs (5)
576
get { return
index
;}
684
if (
index
+1 < parent.Nodes.Count) {
685
return parent.Nodes[
index
+1];
806
int currentInd =
index
;
1785
for (int i =
index
; i < parent.childCount-1; ++i) {
winforms\Managed\System\WinForms\TreeNodeCollection.cs (3)
341
owner.children[node.
index
] = node;
352
return node.
index
;
366
return Add(node.ToString()).
index
;