24 references to Inlines
Microsoft.VisualStudio.LanguageServices (6)
PreviewPane\PreviewPane.xaml.cs (2)
256IdHyperlink.Inlines.Add(_id); 261LearnMoreHyperlink.Inlines.Add(string.Format(ServicesVSResources.More_about_0, _id));
StackTraceExplorer\StackFrameViewModel.cs (3)
157classLink.Inlines.Add(MakeClassifiedRun(ClassificationTypeNames.ClassName, classLinkText)); 180methodLink.Inlines.Add(MakeClassifiedRun(ClassificationTypeNames.MethodName, methodTextBuilder.ToString())); 196fileLink.Inlines.Add(MakeClassifiedRun(ClassificationTypeNames.Text, fileInformation.ToString()));
Utilities\InlineExtensions.cs (1)
16Hyperlink hyperlink => string.Join("", hyperlink.Inlines.Select(GetText)),
PresentationFramework (18)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
178link.Inlines.Add(inlineContainer);
System\Windows\Documents\Span.cs (1)
72this.Inlines.Add(childInline);
System\Windows\Documents\TextRangeEdit.cs (10)
936firstChild = ((Span)firstChild).Inlines.FirstInline; 937lastChild = ((Span)lastChild).Inlines.LastInline; 984if (span == null || span.Inlines.FirstInline != firstChild || span.Inlines.LastInline != lastChild) 2010parent.Inlines.FirstInline == parent.Inlines.LastInline) 2017while (topmostSpan != null && topmostSpan.Inlines.FirstInline == topmostSpan.Inlines.LastInline) 2019Inline child = (Inline)topmostSpan.Inlines.FirstInline; 2061Span nextSpan = parent.Inlines.FirstInline as Span;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (5)
4119bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Bold)target).Inlines; }; 4806bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Hyperlink)target).Inlines; }; 4943bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Italic)target).Inlines; }; 5661bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Span)target).Inlines; }; 6089bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Underline)target).Inlines; };
System\Windows\Markup\KnownTypes.cs (1)
2465return (o as System.Windows.Documents.Span).Inlines;