是否可以在表达式中应用样式?
我想将名称字段用斜体显示:
=Fields!Text.Value & " - " & Fields!CreatedDate.Value & " " & Fields!Name.Value
答案 0 :(得分:2)
文本框包含textruns。每个textrun都有自己的风格。您需要编辑代码看起来像这样:
<Textbox>
<TextRun>
<Value>=Fields!Text.Value & " - " & Fields!CreatedDate.Value & " "</Value>
</TextRun>
<TextRun>
<Value>=Fields!Name.Value</Value>
<Style>
<FontStyle>Italic</FontStyle>
</Style>
</TextRun>
</Textbox>
答案 1 :(得分:0)
为单个文本框中的每个字段创建占位符。这允许您更改每个特定字段的样式。我的博客上有关于此的帖子。 http://mrthetrain.wordpress.com/2012/09/14/placeholders-2/