9 references to FirstInline
PresentationFramework (9)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
127Hyperlink link = outerBlock.Inlines.FirstInline as Hyperlink;
System\Windows\Controls\RichTextBox.cs (1)
477Inline firstInline = (firstBlock == null) ? null : ((Paragraph)firstBlock).Inlines.FirstInline;
System\Windows\Documents\TextRangeEdit.cs (7)
928Inline firstChild = paragraph.Inlines.FirstInline; 936firstChild = ((Span)firstChild).Inlines.FirstInline; 984if (span == null || span.Inlines.FirstInline != firstChild || span.Inlines.LastInline != lastChild) 2010parent.Inlines.FirstInline == parent.Inlines.LastInline) 2017while (topmostSpan != null && topmostSpan.Inlines.FirstInline == topmostSpan.Inlines.LastInline) 2019Inline child = (Inline)topmostSpan.Inlines.FirstInline; 2061Span nextSpan = parent.Inlines.FirstInline as Span;