8 references to Inlines
PresentationFramework (8)
src\Framework\System\Windows\Controls\RichTextBox.cs (2)
488Inline firstInline = (firstBlock == null) ? null : ((Paragraph)firstBlock).Inlines.FirstInline; 491firstInline == ((Paragraph)firstBlock).Inlines.LastInline &&
src\Framework\System\Windows\Documents\Paragraph.cs (1)
61this.Inlines.Add(inline);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (2)
930Inline firstChild = paragraph.Inlines.FirstInline; 931Inline lastChild = paragraph.Inlines.LastInline;
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (1)
925implicitParagraph.Inlines.Add(implicitRun);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5312bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Paragraph)target).Inlines; };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
2508case KnownElements.Paragraph: return (o as System.Windows.Documents.Paragraph).Inlines;