9 references to FirstInline
PresentationFramework (9)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
119Hyperlink link = outerBlock.Inlines.FirstInline as Hyperlink;
System\Windows\Controls\RichTextBox.cs (1)
474Inline firstInline = (firstBlock == null) ? null : ((Paragraph)firstBlock).Inlines.FirstInline;
System\Windows\Documents\TextRangeEdit.cs (7)
925Inline firstChild = paragraph.Inlines.FirstInline; 933firstChild = ((Span)firstChild).Inlines.FirstInline; 981if (span == null || span.Inlines.FirstInline != firstChild || span.Inlines.LastInline != lastChild) 2007parent.Inlines.FirstInline == parent.Inlines.LastInline) 2014while (topmostSpan != null && topmostSpan.Inlines.FirstInline == topmostSpan.Inlines.LastInline) 2016Inline child = (Inline)topmostSpan.Inlines.FirstInline; 2058Span nextSpan = parent.Inlines.FirstInline as Span;