16 references to GetParentOfType
PresentationFramework (16)
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (11)
5203DocumentNode dnRow = GetParentOfType(DocumentNodeType.dnRow); 5543DocumentNode dnCell = GetParentOfType(DocumentNodeType.dnCell); 5583if (dnRow.Type == DocumentNodeType.dnRow && this == dnRow.GetParentOfType(DocumentNodeType.dnTable)) 5607if (dnCell.Type == DocumentNodeType.dnCell && this == dnCell.GetParentOfType(DocumentNodeType.dnRow)) 5624DocumentNode dnRow = this.GetParentOfType(DocumentNodeType.dnRow); 5640if (dnCell.Type == DocumentNodeType.dnCell && dnCell.GetParentOfType(DocumentNodeType.dnRow) == dnRow) 6885DocumentNode dnCell = dn.GetParentOfType(DocumentNodeType.dnCell); 6892DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6942DocumentNode dnShape = dn.GetParentOfType(DocumentNodeType.dnShape); 6995if (ddn.Type == DocumentNodeType.dnCell && ddn.GetParentOfType(dn.Type) == dn) 7412DocumentNode dnTable = dn.GetParentOfType(DocumentNodeType.dnTable);
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (5)
1163DocumentNode dnCell = dnThis.GetParentOfType(DocumentNodeType.dnCell); 1289DocumentNode dnList = dnThis.GetParentOfType(DocumentNodeType.dnList); 1430DocumentNode dnTable = dnRow.GetParentOfType(DocumentNodeType.dnTable); 1616DocumentNode dnTable = dnCell.GetParentOfType(DocumentNodeType.dnTable); 1871bool nested = dnThis.GetParentOfType(DocumentNodeType.dnCell) != null;