4 implementations of Index
PresentationFramework (4)
System\Windows\Documents\TableCell.cs (1)
314int IIndexedChild<TableRow>.Index
System\Windows\Documents\TableColumn.cs (1)
116int IIndexedChild<Table>.Index
System\Windows\Documents\TableRow.cs (1)
146int IIndexedChild<TableRowGroup>.Index
System\Windows\Documents\TableRowGroup.cs (1)
164int IIndexedChild<Table>.Index
5 writes to Index
PresentationFramework (5)
MS\Internal\Documents\ContentElementCollection.cs (1)
712Items[i].Index = i;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (4)
272item.Index = index; 294item.Index = -1; 303Items[i].Index = i; 372Items[i].Index = i + 1;
9 references to Index
PresentationFramework (9)
MS\Internal\Documents\ContentElementCollection.cs (4)
171Debug.Assert(Items[item.Index] == item); 187return item.Index; 699Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 701int index = item.Index;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (5)
257Debug.Assert(item != null && item.Index == -1); 286Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 288int index = item.Index; 293Items[item.Index] = null; 386Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item);