24 references to Inlines
Microsoft.VisualStudio.LanguageServices (6)
PreviewPane\PreviewPane.xaml.cs (2)
257
IdHyperlink.
Inlines
.Add(_id);
262
LearnMoreHyperlink.
Inlines
.Add(string.Format(ServicesVSResources.More_about_0, _id));
StackTraceExplorer\StackFrameViewModel.cs (3)
149
classLink.
Inlines
.Add(MakeClassifiedRun(ClassificationTypeNames.ClassName, classLinkText));
172
methodLink.
Inlines
.Add(MakeClassifiedRun(ClassificationTypeNames.MethodName, methodTextBuilder.ToString()));
188
fileLink.
Inlines
.Add(MakeClassifiedRun(ClassificationTypeNames.Text, fileInformation.ToString()));
Utilities\InlineExtensions.cs (1)
16
Hyperlink hyperlink => string.Join("", hyperlink.
Inlines
.Select(GetText)),
PresentationFramework (18)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
170
link.
Inlines
.Add(inlineContainer);
System\Windows\Documents\Span.cs (1)
64
this.
Inlines
.Add(childInline);
System\Windows\Documents\TextRangeEdit.cs (10)
933
firstChild = ((Span)firstChild).
Inlines
.FirstInline;
934
lastChild = ((Span)lastChild).
Inlines
.LastInline;
981
if (span == null || span.
Inlines
.FirstInline != firstChild || span.
Inlines
.LastInline != lastChild)
2007
parent.
Inlines
.FirstInline == parent.
Inlines
.LastInline)
2014
while (topmostSpan != null && topmostSpan.
Inlines
.FirstInline == topmostSpan.
Inlines
.LastInline)
2016
Inline child = (Inline)topmostSpan.
Inlines
.FirstInline;
2058
Span nextSpan = parent.
Inlines
.FirstInline as Span;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (5)
4333
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Bold)target).
Inlines
; },
5096
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Hyperlink)target).
Inlines
; },
5249
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Italic)target).
Inlines
; },
6045
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Span)target).
Inlines
; },
6521
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Underline)target).
Inlines
; },
System\Windows\Markup\KnownTypes.cs (1)
2458
return (o as System.Windows.Documents.Span).
Inlines
;