This description applies to the following properties:
Property Type: Static
Default Value: Microsoft Sans Serif; Regular; 8.25pt
Property | Hierarchical Reference |
---|---|
Font | ControlName.Font |
Caption Font | ControlName.CaptionFont |
Header Font | ControlName.HeaderFont |
List Item Font | ControlName.ListItemFont |
Option Item Font | ControlName.OptionItemFont |
Selected Row Font | ControlName.SelectedRowFont |
Unit Font | ControlName.UnitFont |
Ensure the property is a static property (It will display the gray orb alongside the property name)
The default value of the static property can be changed by one of the following methods:
Font Property Value (static) | Result | Notes |
---|---|---|
font-family: verdana; font-size: 14.25pt; font-weight: bold; text-decoration: | Changes the font to verdana, 14,25pt, bold. |
A rule can also be built for this property by changing the type to dynamic.
See How To: Change A Static Property To A Dynamic Property.
Font Property Value (dynamic) | Result | Notes |
---|---|---|
IF( LengthReturn<100 , "font-family: verdana; font-size: 14.25pt; font-weight: bold; font-style: italic; text-decoration:", "font-family: verdana; font-size: 12pt; text-decoration:" | Changes the font to verdana, 14,25pt, bold italic when Length is less than 100. Otherwise it will be set to Verdana, 12pt regular |
The topic How To: Embed Non-standard fonts gives more information on choosing fonts and ensuring non-standard fonts display correctly when viewed on different devices.
Value set in Form Designer. Static properties can be made Dynamic by double clicking the gray radio button.