如何使用 Digital-Metaphors Report Builder RAP 在计算字段中设置字体属性

发布于 2024-08-15 04:23:49 字数 220 浏览 9 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拍不死你 2024-08-22 04:23:49

RAP 的语法是

Label.Font.Bold := True;

RAP 不支持“设置”类型。

The syntax for RAP is

Label.Font.Bold := True;

RAP does not support ‘set’ types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文