Field Properties - Font Tab - Italic¶
Select this checkbox to set the Italic 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 {?NoteText} = 1 then
return True
else
return False
end
The above function can also be written as:
return {?NoteText} = 1