9 references to FirstInline
PresentationFramework (9)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
120Hyperlink link = outerBlock.Inlines.FirstInline as Hyperlink;
System\Windows\Controls\RichTextBox.cs (1)
473Inline firstInline = (firstBlock == null) ? null : ((Paragraph)firstBlock).Inlines.FirstInline;
System\Windows\Documents\TextRangeEdit.cs (7)
926Inline firstChild = paragraph.Inlines.FirstInline; 934firstChild = ((Span)firstChild).Inlines.FirstInline; 982if (span == null || span.Inlines.FirstInline != firstChild || span.Inlines.LastInline != lastChild) 2008parent.Inlines.FirstInline == parent.Inlines.LastInline) 2015while (topmostSpan != null && topmostSpan.Inlines.FirstInline == topmostSpan.Inlines.LastInline) 2017Inline child = (Inline)topmostSpan.Inlines.FirstInline; 2059Span nextSpan = parent.Inlines.FirstInline as Span;