Formatting boolean data fields with ReportBuilder can be performed using either of the following techniques:
- Specify a value for the TppDBText.DisplayFormat property.
Example:
DBText1.DisplayFormat := 'True;False';
- Specify a value for the TField.DisplayValues property of the dataset.
Example:
TField1.DisplayValues := 'Yes;No;'
Note: If you have TField.DisplayValues assigned, please do not assign DBText.DisplayFormat.