Field Properties - Font Tab - Bold option¶
Select this checkbox to set the Bold option for the selected Font to true.
This setting can be conditionally defined by using a function as well.
An example of using a function for setting the font style:
if {OrderDetail.Qty_Ordered} > 50 then
return True
else
return False
end
The above function can also be written as:
return {OrderDetail.Qty_Ordered} > 50