Skip to content

Field Properties - Font Tab - Strikethrough

Select this checkbox to set the Strikethrough 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 {OrderDtl.Qty_Ordered} > 50 then
    return True
else
    return False
end

The above function can also be written as:

return {OrderDtl.Qty_Ordered} > 50