21 references to Paragraph
PresentationFramework (21)
System\Windows\Documents\Span.cs (2)
107if (start.Paragraph != end.Paragraph)
System\windows\Documents\TextEditorLists.cs (2)
245Paragraph paragraph = thisSelection.Start.Paragraph; 300Paragraph paragraph = thisSelection.Start.Paragraph;
System\Windows\Documents\TextPointer.cs (1)
1097/// enumerating all <see cref="Paragraph"/> in a range.</para>
System\Windows\Documents\TextRange.cs (1)
1579Paragraph paragraph = startPosition.Paragraph;
System\Windows\Documents\TextRangeBase.cs (1)
1374if ((newStart is TextPointer) && ((TextPointer)newStart).Paragraph != null)
System\Windows\Documents\TextRangeEdit.cs (12)
597if (position.Paragraph == null) 614Paragraph paragraph = position.Paragraph; 1042block = pointer.Paragraph; 1464firstParagraphOrBlockUIContainer = startPosition.Paragraph; 1470secondParagraphOrBlockUIContainer = endPosition.Paragraph; 2216Invariant.Assert(start.Paragraph != null); 2217Invariant.Assert(start.Paragraph.ContentEnd.CompareTo(end) < 0); 2220SetStructuralInlineProperty(start, start.Paragraph.ContentEnd, formattingProperty, value); 2221start = start.Paragraph.ElementEnd; 2224if (end.Paragraph != null) 2226SetStructuralInlineProperty(end.Paragraph.ContentStart, end, formattingProperty, value); 2227end = end.Paragraph.ElementStart;
System\Windows\Documents\TextRangeEditTables.cs (2)
646Paragraph paragraph = insertionPosition.Paragraph; 654paragraph = insertionPosition.Paragraph;