更改 SSRS 报告中的值
我正在尝试使用 SSRS 表达式语言更改 SSRS 报告中文本的字体。
我的报告中有一个文本框,我使用 SSRS 表达式语言设置它的 Value 属性
="hello"
有没有办法使 hello
文字成为带下划线的字符串?
I'm trying to change the font of the text in my SSRS Report using the SSRS Expression language.
I have a textbox in my report and I set the Value property of it using the SSRS Expression language
="hello"
Is there a way to make the hello
literal an underlined string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
AFAIK 没有办法在表达式中改变它。但是,您可以修改 ReportingServices.css 文件来更改此设置。
它通常位于此处:
AFAIK there is no way to change this in an expression. You can, however, modify the ReportingServices.css file to change this.
It's normally located here:
除非我遗漏了某些内容,否则您可以设置此 使用属性< /a>.你不能通过“表达语言”(VB.net,顺便说一句)来做到这一点。
在您的示例中,您拥有的文本只是 Value 属性:一切都是属性......
Unless I'm missing something, you set this using properties. You can't do it via the "expression language" (which is VB.net, BTW).
In your example, the text you have is just the Value property: everything is a property...
在文本装饰表达式值中,您可以输入 =Iif(Me.Value = "hello", "Underline", "None")
In the Text Decoration expression value, you can put =Iif(Me.Value = "hello", "Underline", "None")
创建一个占位符,在其中写入表达式
="" & “你好”& ””
然后转到占位符属性,选择单选按钮“HTML - 将 HTML 标签解释为样式”。单击“确定”...
这会起作用。
create a place holder in that write the expression
="" & "hello" & ""
And go to place holder properties select the radio button "HTML - Interpret HTML tags as styles". click ok...
This will work.