4 implementations of Index
PresentationFramework (4)
System\Windows\Documents\TableCell.cs (1)
313int IIndexedChild<TableRow>.Index
System\Windows\Documents\TableColumn.cs (1)
115int IIndexedChild<Table>.Index
System\Windows\Documents\TableRow.cs (1)
145int IIndexedChild<TableRowGroup>.Index
System\Windows\Documents\TableRowGroup.cs (1)
152int IIndexedChild<Table>.Index
5 writes to Index
PresentationFramework (5)
MS\Internal\Documents\ContentElementCollection.cs (1)
711Items[i].Index = i;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (4)
271item.Index = index; 293item.Index = -1; 302Items[i].Index = i; 371Items[i].Index = i + 1;
9 references to Index
PresentationFramework (9)
MS\Internal\Documents\ContentElementCollection.cs (4)
170Debug.Assert(Items[item.Index] == item); 186return item.Index; 698Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 700int index = item.Index;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (5)
256Debug.Assert(item != null && item.Index == -1); 285Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 287int index = item.Index; 292Items[item.Index] = null; 385Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item);