19 references to Parent
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (1)
49parent = textContainer.Parent;
MS\Internal\PtsHost\StructuralCache.cs (2)
40Invariant.Assert(textContainer.Parent != null); 237return _textContainer.Parent;
System\Windows\Controls\TextBlock.cs (1)
3713DependencyObject parent = te.TextContainer.Parent;
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
267/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\FixedTextContainer.cs (1)
235/// <see cref="TextContainer.Parent"/>
System\Windows\Documents\Run.cs (1)
276FlowDocument document = run.TextContainer.Parent as FlowDocument;
System\Windows\Documents\TextContainer.cs (3)
1742return this.Parent; 3478return (this.Parent != null) ? this.Parent.Dispatcher : null;
System\Windows\Documents\TextPointer.cs (3)
1418if (this.TextContainer.Parent != null) 1420Type containerType = this.TextContainer.Parent.GetType(); 3793return ((FrameworkElement)_tree.Parent);
System\Windows\Documents\TextRangeEdit.cs (4)
592Invariant.Assert(position.TextContainer.Parent == null || TextSchema.IsValidChildOfContainer(position.TextContainer.Parent.GetType(), typeof(Paragraph))); 619Invariant.Assert(position.TextContainer.Parent == null); 793DependencyObject parent = start.TextContainer.Parent;
System\Windows\Documents\TextTreeNode.cs (2)
311parent = ((TextTreeRootNode)node).TextContainer.Parent; // This may be null. 354logicalTreeNode = ((TextTreeRootNode)node).TextContainer.Parent;