|
|
|
|
|
- Font variable
- Fonts used by the print functions
- Limits
FontExtended (Property) In french: PoliceEtendue
The FontExtended property is used to manage the spacing of characters. You can: - Find out whether the spacing between characters in a text is increased.
- Increase the spacing between characters in a text.
WLanguage supports the following character spacing options: - Normal: character spacing is normal.
- Condensed: character spacing is reduced (FontCondensed property).
- Extended: character spacing is increased (FontExtended property).
- Large: character spacing is increased to the maximum (FontLarge property).
// Increase spacing between characters in the text displayed in "STC_StaticControl" STC_StaticControl.FontExtended = True
Syntax
Finding out whether the spacing between characters in the text displayed in a control is increased Hide the details
<Result> = <Control used>.FontExtended
<Result>: Boolean - True if the characters displayed in the text are expanded,
- False otherwise.
<Control used>: Control name Name of the control (Static or Calculated control) to be used.
Increasing the spacing between characters in the text displayed in a control Hide the details
<Control used>.FontExtended = <Extended/Not Extended>
<Control used>: Control name Name of the control (Static or Calculated control) to be used. <Extended/Not Extended>: Boolean - True if the characters displayed in the text must be expanded,
- False otherwise.
Remarks Font variable If identical fonts (same size, same attribute, ...) must be applied to several controls, we recommend that you use a Font variable. A font can be created from a Font variable. To define the font characteristics, use: This font can be used: Fonts used by the print functions Limits In a report, the FontExtended property can only be used on: - a Static control.
- a URL Link control.
- a Calculated control.
- a Preset control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|