18 references to Parent
PresentationFramework (18)
MS\Internal\Documents\ContentHostHelper.cs (1)
48parent = textContainer.Parent;
MS\Internal\PtsHost\StructuralCache.cs (2)
39Invariant.Assert(textContainer.Parent != null); 236return _textContainer.Parent;
System\Windows\Controls\TextBlock.cs (1)
3703DependencyObject parent = te.TextContainer.Parent;
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
258/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\FixedTextContainer.cs (1)
227/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\Run.cs (1)
266FlowDocument document = run.TextContainer.Parent as FlowDocument;
System\Windows\Documents\TextContainer.cs (2)
1735return this.Parent; 3450return this.Parent?.Dispatcher;
System\Windows\Documents\TextPointer.cs (3)
1417if (this.TextContainer.Parent != null) 1419Type containerType = this.TextContainer.Parent.GetType(); 3792return ((FrameworkElement)_tree.Parent);
System\Windows\Documents\TextRangeEdit.cs (4)
591Invariant.Assert(position.TextContainer.Parent == null || TextSchema.IsValidChildOfContainer(position.TextContainer.Parent.GetType(), typeof(Paragraph))); 618Invariant.Assert(position.TextContainer.Parent == null); 792DependencyObject parent = start.TextContainer.Parent;
System\Windows\Documents\TextTreeNode.cs (2)
310parent = ((TextTreeRootNode)node).TextContainer.Parent; // This may be null. 353logicalTreeNode = ((TextTreeRootNode)node).TextContainer.Parent;