9 references to FirstInline
PresentationFramework (9)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
128Hyperlink link = outerBlock.Inlines.FirstInline as Hyperlink;
src\Framework\System\Windows\Controls\RichTextBox.cs (1)
488Inline firstInline = (firstBlock == null) ? null : ((Paragraph)firstBlock).Inlines.FirstInline;
src\Framework\System\Windows\Documents\TextRangeEdit.cs (7)
930Inline firstChild = paragraph.Inlines.FirstInline; 938firstChild = ((Span)firstChild).Inlines.FirstInline; 986if (span == null || span.Inlines.FirstInline != firstChild || span.Inlines.LastInline != lastChild) 2012parent.Inlines.FirstInline == parent.Inlines.LastInline) 2019while (topmostSpan != null && topmostSpan.Inlines.FirstInline == topmostSpan.Inlines.LastInline) 2021Inline child = (Inline)topmostSpan.Inlines.FirstInline; 2063Span nextSpan = parent.Inlines.FirstInline as Span;