18 references to Text
PresentationBuildTasks (18)
Framework\System\Windows\Markup\BamlRecordWriter.cs (3)
1420
if (!MapTable.GetStringInfoId(xamlTextNode.
Text
,
1424
xamlTextNode.
Text
);
1454
bamlText.Value = xamlTextNode.
Text
;
Framework\System\Windows\Markup\StyleXamlParser.cs (4)
1166
_styleTargetTypeString = xamlTextNode.
Text
;
1193
for (int i = 0; i< xamlTextNode.
Text
.Length; i++)
1195
if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.
Text
[i]))
1197
ThrowException(SRID.StyleTextNotSupported, xamlTextNode.
Text
,
Framework\System\Windows\Markup\TemplateXamlParser.cs (5)
1290
if (xamlTextNode.
Text
!= null)
1292
_templateTargetTypeType = XamlTypeMapper.GetTypeFromBaseString(xamlTextNode.
Text
,
1324
for (int i = 0; i< xamlTextNode.
Text
.Length; i++)
1326
if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.
Text
[i]))
1328
ThrowException(SRID.TemplateTextNotSupported, xamlTextNode.
Text
,
Framework\System\Windows\Markup\XamlReaderHelper.cs (6)
6341
if (null != textFlowData.TextNode && textFlowData.TextNode.
Text
.Length > 0)
6346
collapsedText = CollapseText(textFlowData.TextNode.
Text
,
6441
textFlowData.TextNode.UpdateText(textFlowData.TextNode.
Text
+
6442
((XamlTextNode)xamlNode).
Text
);
6514
if (IsWhitespace(textFlowData.TextNode.
Text
))
6583
(textFlowData.TextNode == null ? "" : textFlowData.TextNode.
Text
) /* Child */));