You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TBoldLabel is a data-aware label that displays a Bold attribute or OCL expression result as read-only text. It automatically updates when the underlying data changes.
Optionally set BoldProperties.Expression for sub-navigation
The label text updates automatically when data changes
Display Patterns
// Show a simple attribute
BoldLabel1.BoldHandle := CustomerHandle;
BoldLabel1.BoldProperties.Expression := 'name';
// Show a navigated value
BoldLabel2.BoldProperties.Expression := 'address.city';
// Show a calculated value
BoldLabel3.BoldProperties.Expression := 'orders->size.asString';
// Show a formatted value
BoldLabel4.BoldProperties.Expression := 'salary.formatFloat(''#,##0.00'')';
Conditional Formatting
Use a custom renderer to change appearance based on values: