4 implementations of Index
PresentationFramework (4)
System\Windows\Documents\TableCell.cs (1)
327int IIndexedChild<TableRow>.Index
System\Windows\Documents\TableColumn.cs (1)
124int IIndexedChild<Table>.Index
System\Windows\Documents\TableRow.cs (1)
161int IIndexedChild<TableRowGroup>.Index
System\Windows\Documents\TableRowGroup.cs (1)
181int IIndexedChild<Table>.Index
5 writes to Index
PresentationFramework (5)
MS\Internal\Documents\ContentElementCollection.cs (1)
717Items[i].Index = i;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (4)
276item.Index = index; 298item.Index = -1; 307Items[i].Index = i; 376Items[i].Index = i + 1;
9 references to Index
PresentationFramework (9)
MS\Internal\Documents\ContentElementCollection.cs (4)
176Debug.Assert(Items[item.Index] == item); 192return item.Index; 704Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 706int index = item.Index;
MS\Internal\Documents\TableTextElementCollectionInternal.cs (5)
261Debug.Assert(item != null && item.Index == -1); 290Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item); 292int index = item.Index; 297Items[item.Index] = null; 390Debug.Assert(BelongsToOwner(item) && Items[item.Index] == item);