16 references to GetParentOfType
PresentationFramework (16)
System\Windows\Documents\RtfToXamlReader.cs (11)
5149DocumentNode dnRow = GetParentOfType(DocumentNodeType.dnRow); 5470DocumentNode dnCell = GetParentOfType(DocumentNodeType.dnCell); 5510if (dnRow.Type == DocumentNodeType.dnRow && this == dnRow.GetParentOfType(DocumentNodeType.dnTable)) 5534if (dnCell.Type == DocumentNodeType.dnCell && this == dnCell.GetParentOfType(DocumentNodeType.dnRow)) 5551DocumentNode dnRow = this.GetParentOfType(DocumentNodeType.dnRow); 5567if (dnCell.Type == DocumentNodeType.dnCell && dnCell.GetParentOfType(DocumentNodeType.dnRow) == dnRow) 6817DocumentNode dnCell = dn.GetParentOfType(DocumentNodeType.dnCell); 6824DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6875DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6928if (ddn.Type == DocumentNodeType.dnCell && ddn.GetParentOfType(dn.Type) == dn) 7345DocumentNode dnTable = dn.GetParentOfType(DocumentNodeType.dnTable);
System\Windows\Documents\XamlToRtfWriter.cs (5)
1161DocumentNode dnCell = dnThis.GetParentOfType(DocumentNodeType.dnCell); 1286DocumentNode dnList = dnThis.GetParentOfType(DocumentNodeType.dnList); 1427DocumentNode dnTable = dnRow.GetParentOfType(DocumentNodeType.dnTable); 1613DocumentNode dnTable = dnCell.GetParentOfType(DocumentNodeType.dnTable); 1868bool nested = dnThis.GetParentOfType(DocumentNodeType.dnCell) != null;