|
|
|
|
|
- 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.
The following types of character spacing are supported in WLanguage: - Normal: the spacing between characters 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).
// Condense the characters in the text displayed in "STC_StaticControl" STC_StaticControl.FontCondensed = 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 control (Static control or Calculated control) to use.
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 control (Static control or Calculated control) to use. <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 through programming. 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 control.
- a URL Link control.
- a calculated control.
- a preset control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|