|
|
|
|
|
- Font variable
- Fonts used by the print functions
- Limits
FontCondensed (Property) In french: PoliceCondensée
The FontCondensed property is used to manage character spacing. You can: - Determine if characters in a text are condensed.
- Condense (or not) the characters.
WLanguage supports the following character spacing options: - Normal: character spacing is normal.
- Condensed: character spacing is reduced (property CondensedFont).
- Extended: character spacing is increased (property FontExtended).
- Large: character spacing is increased to maximum (property FontLarge).
LIB_ChampLibellé.PoliceCondensée = True
Syntax
Finding out whether the characters in the text displayed in a control are condensed Hide the details
<Result> = <Control used>.FontCondensed
<Result>: Boolean - True if the characters displayed in the text are condensed,
- False otherwise.
<Control used>: Control name Name of field (Static Text control or Calculated control) to be manipulated.
Condensing the characters in the text displayed in a control Hide the details
<Control used>.FontCondensed = <Condensed/Not condensed>
<Control used>: Control name Name of field (Static Text control or Calculated control) to be manipulated. <Condensed/Not condensed>: Boolean - True if the characters displayed in the text must be condensed,
- False otherwise.
Remarks Font variable If identical fonts (same size, attributes, etc.) must be applied to multiple controls, it is recommended to use a font created programmatically. To define the font characteristics, use: This font can be used: Fonts used by the print functions Limits In a report, the FontCondensed 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|