|
|
|
|
|
- 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 (property FontCondensed).
- Extended: character spacing is increased (property FontExtended).
- Large: character spacing is increased to maximum (property FontLarge).
LIB_ChampLibellé.PoliceEtendue = 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.
Extend the characters of the text displayed in a field 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, etc.) are to be applied to several fields, it is advisable to use a variable of type Font. 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 Text control.
- a URL Link control.
- a Calculated control.
- a Preset control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|