21 references to Paragraph
PresentationFramework (21)
System\Windows\Documents\Span.cs (2)
117if (start.Paragraph != end.Paragraph)
System\windows\Documents\TextEditorLists.cs (2)
246Paragraph paragraph = thisSelection.Start.Paragraph; 301Paragraph paragraph = thisSelection.Start.Paragraph;
System\Windows\Documents\TextPointer.cs (1)
1098/// enumerating all <see cref="Paragraph"/> in a range.</para>
System\Windows\Documents\TextRange.cs (1)
1588Paragraph paragraph = startPosition.Paragraph;
System\Windows\Documents\TextRangeBase.cs (1)
1375if ((newStart is TextPointer) && ((TextPointer)newStart).Paragraph != null)
System\Windows\Documents\TextRangeEdit.cs (12)
598if (position.Paragraph == null) 615Paragraph paragraph = position.Paragraph; 1043block = pointer.Paragraph; 1465firstParagraphOrBlockUIContainer = startPosition.Paragraph; 1471secondParagraphOrBlockUIContainer = endPosition.Paragraph; 2217Invariant.Assert(start.Paragraph != null); 2218Invariant.Assert(start.Paragraph.ContentEnd.CompareTo(end) < 0); 2221SetStructuralInlineProperty(start, start.Paragraph.ContentEnd, formattingProperty, value); 2222start = start.Paragraph.ElementEnd; 2225if (end.Paragraph != null) 2227SetStructuralInlineProperty(end.Paragraph.ContentStart, end, formattingProperty, value); 2228end = end.Paragraph.ElementStart;
System\Windows\Documents\TextRangeEditTables.cs (2)
647Paragraph paragraph = insertionPosition.Paragraph; 655paragraph = insertionPosition.Paragraph;