如何使用 Digital-Metaphors Report Builder RAP 在计算字段中设置字体属性
我正在尝试使用 RAP 在 Digital-Metaphors Report Builder 中的变量中设置字体属性。我正在使用的代码是:
if (DBdetail['LINEATTR']='1') then begin
budgetValue.font.style:=[fsBold];
end;
但这不起作用,我收到编译时错误。如何设置字体样式?
I'm trying to set font attributes in a variable in Digital-Metaphors Report Builder using RAP. The code I'm using is:
if (DBdetail['LINEATTR']='1') then begin
budgetValue.font.style:=[fsBold];
end;
but this isn't working, I get a compile time error. How can I set the font style?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RAP 的语法是
Label.Font.Bold := True;
RAP 不支持“设置”类型。
The syntax for RAP is
Label.Font.Bold := True;
RAP does not support ‘set’ types.