0

我正在尝试使用 RAP 在 Digital-Metaphors Report Builder 中的变量中设置字体属性。我正在使用的代码是:

if (DBdetail['LINEATTR']='1') then begin
    budgetValue.font.style:=[fsBold];
end;

但这不起作用,我收到编译时错误。如何设置字体样式?

4

1 回答 1

4

RAP 的语法是

标签.字体.粗体:=真;

RAP 不支持“设置”类型。

于 2009-12-21T16:34:51.173 回答