16 references to GetParentOfType
PresentationFramework (16)
System\Windows\Documents\RtfToXamlReader.cs (11)
5141DocumentNode dnRow = GetParentOfType(DocumentNodeType.dnRow); 5462DocumentNode dnCell = GetParentOfType(DocumentNodeType.dnCell); 5502if (dnRow.Type == DocumentNodeType.dnRow && this == dnRow.GetParentOfType(DocumentNodeType.dnTable)) 5526if (dnCell.Type == DocumentNodeType.dnCell && this == dnCell.GetParentOfType(DocumentNodeType.dnRow)) 5543DocumentNode dnRow = this.GetParentOfType(DocumentNodeType.dnRow); 5559if (dnCell.Type == DocumentNodeType.dnCell && dnCell.GetParentOfType(DocumentNodeType.dnRow) == dnRow) 6803DocumentNode dnCell = dn.GetParentOfType(DocumentNodeType.dnCell); 6810DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6860DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6913if (ddn.Type == DocumentNodeType.dnCell && ddn.GetParentOfType(dn.Type) == dn) 7330DocumentNode dnTable = dn.GetParentOfType(DocumentNodeType.dnTable);
System\Windows\Documents\XamlToRtfWriter.cs (5)
1162DocumentNode dnCell = dnThis.GetParentOfType(DocumentNodeType.dnCell); 1287DocumentNode dnList = dnThis.GetParentOfType(DocumentNodeType.dnList); 1428DocumentNode dnTable = dnRow.GetParentOfType(DocumentNodeType.dnTable); 1614DocumentNode dnTable = dnCell.GetParentOfType(DocumentNodeType.dnTable); 1869bool nested = dnThis.GetParentOfType(DocumentNodeType.dnCell) != null;