18 references to Inlines
PresentationFramework (18)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
179link.Inlines.Add(inlineContainer);
src\Framework\System\Windows\Documents\Span.cs (1)
72this.Inlines.Add(childInline);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (10)
938firstChild = ((Span)firstChild).Inlines.FirstInline; 939lastChild = ((Span)lastChild).Inlines.LastInline; 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;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (5)
4094bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Bold)target).Inlines; }; 4781bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Hyperlink)target).Inlines; }; 4918bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Italic)target).Inlines; }; 5619bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Span)target).Inlines; }; 6047bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Underline)target).Inlines; };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
2458return (o as System.Windows.Documents.Span).Inlines;