21 references to Paragraph
PresentationFramework (21)
src\Framework\System\Windows\Documents\Span.cs (2)
124if (start.Paragraph != end.Paragraph)
src\Framework\System\windows\Documents\TextEditorLists.cs (2)
264Paragraph paragraph = thisSelection.Start.Paragraph; 319Paragraph paragraph = thisSelection.Start.Paragraph;
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1114/// enumerating all <see cref="Paragraph"/> in a range.</para>
src\Framework\System\Windows\Documents\TextRange.cs (1)
1588Paragraph paragraph = startPosition.Paragraph;
src\Framework\System\Windows\Documents\TextRangeBase.cs (1)
1392if ((newStart is TextPointer) && ((TextPointer)newStart).Paragraph != null)
src\Framework\System\Windows\Documents\TextRangeEdit.cs (12)
602if (position.Paragraph == null) 619Paragraph paragraph = position.Paragraph; 1047block = pointer.Paragraph; 1469firstParagraphOrBlockUIContainer = startPosition.Paragraph; 1475secondParagraphOrBlockUIContainer = endPosition.Paragraph; 2221Invariant.Assert(start.Paragraph != null); 2222Invariant.Assert(start.Paragraph.ContentEnd.CompareTo(end) < 0); 2225SetStructuralInlineProperty(start, start.Paragraph.ContentEnd, formattingProperty, value); 2226start = start.Paragraph.ElementEnd; 2229if (end.Paragraph != null) 2231SetStructuralInlineProperty(end.Paragraph.ContentStart, end, formattingProperty, value); 2232end = end.Paragraph.ElementStart;
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (2)
652Paragraph paragraph = insertionPosition.Paragraph; 660paragraph = insertionPosition.Paragraph;