21 references to Paragraph
PresentationFramework (21)
System\Windows\Documents\Span.cs (2)
118if (start.Paragraph != end.Paragraph)
System\windows\Documents\TextEditorLists.cs (2)
262Paragraph paragraph = thisSelection.Start.Paragraph; 317Paragraph paragraph = thisSelection.Start.Paragraph;
System\Windows\Documents\TextPointer.cs (1)
1103/// enumerating all <see cref="Paragraph"/> in a range.</para>
System\Windows\Documents\TextRange.cs (1)
1591Paragraph paragraph = startPosition.Paragraph;
System\Windows\Documents\TextRangeBase.cs (1)
1378if ((newStart is TextPointer) && ((TextPointer)newStart).Paragraph != null)
System\Windows\Documents\TextRangeEdit.cs (12)
600if (position.Paragraph == null) 617Paragraph paragraph = position.Paragraph; 1045block = pointer.Paragraph; 1467firstParagraphOrBlockUIContainer = startPosition.Paragraph; 1473secondParagraphOrBlockUIContainer = endPosition.Paragraph; 2219Invariant.Assert(start.Paragraph != null); 2220Invariant.Assert(start.Paragraph.ContentEnd.CompareTo(end) < 0); 2223SetStructuralInlineProperty(start, start.Paragraph.ContentEnd, formattingProperty, value); 2224start = start.Paragraph.ElementEnd; 2227if (end.Paragraph != null) 2229SetStructuralInlineProperty(end.Paragraph.ContentStart, end, formattingProperty, value); 2230end = end.Paragraph.ElementStart;
System\Windows\Documents\TextRangeEditTables.cs (2)
649Paragraph paragraph = insertionPosition.Paragraph; 657paragraph = insertionPosition.Paragraph;