19 references to Parent
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (1)
52parent = textContainer.Parent;
MS\Internal\PtsHost\StructuralCache.cs (2)
46Invariant.Assert(textContainer.Parent != null); 243return _textContainer.Parent;
System\Windows\Controls\TextBlock.cs (1)
3723DependencyObject parent = te.TextContainer.Parent;
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
275/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\FixedTextContainer.cs (1)
244/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\Run.cs (1)
276FlowDocument document = run.TextContainer.Parent as FlowDocument;
System\Windows\Documents\TextContainer.cs (3)
1747return this.Parent; 3483return (this.Parent != null) ? this.Parent.Dispatcher : null;
System\Windows\Documents\TextPointer.cs (3)
1423if (this.TextContainer.Parent != null) 1425Type containerType = this.TextContainer.Parent.GetType(); 3798return ((FrameworkElement)_tree.Parent);
System\Windows\Documents\TextRangeEdit.cs (4)
594Invariant.Assert(position.TextContainer.Parent == null || TextSchema.IsValidChildOfContainer(position.TextContainer.Parent.GetType(), typeof(Paragraph))); 621Invariant.Assert(position.TextContainer.Parent == null); 795DependencyObject parent = start.TextContainer.Parent;
System\Windows\Documents\TextTreeNode.cs (2)
312parent = ((TextTreeRootNode)node).TextContainer.Parent; // This may be null. 355logicalTreeNode = ((TextTreeRootNode)node).TextContainer.Parent;