Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Font.Style
rbuser
September 2002
edited September 2002
in
General
How do I set Font Style?
if plDetail['RecStatus'] = 1 then {Field type Integer}
begin
DBText20.Font.Style:= [fsItalic];
end;
I keep gatting this error...
...Expected: '(' of '[', but found 'Style' instead.
Please Help
Reagrds
Hott
Comments
digitalmetaphors
September 2002
edited September 2002
In RAP, sets aren't supported. We added boolean properties to allow you to
control this in RAP. For example, to bold a dbcalc, you would do this:
DBCalc1.Font.Bold := True;
Cheers,
Jim Bennett
Digital Metaphors
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
This discussion has been closed.
Comments
control this in RAP. For example, to bold a dbcalc, you would do this:
DBCalc1.Font.Bold := True;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com