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