Skip to content

Field Properties - Font Tab - Underline

Select this checkbox to set the Underline 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