|
|
|
|
|
- Font variable
- Fonts used by the print functions
- Limitations
FontLarge (Property) In french: PoliceLarge
The FontLarge property sets the spacing between characters. You can: - Determine if the text is expanded.
- Expand the 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: the spacing between characters is increased to the maximum (PoliceLargeproperty).
LIB_ChampLibellé.PoliceLarge = True
Syntax
Determining if the text displayed in a control is expanded Hide the details
<Result> = <Control used>.FontLarge
<Result>: Boolean - True if the characters in a text are enlarged,
- False otherwise.
<Control used>: Control name Name of field (Static Text control or Calculated control) to be manipulated.
Expanding the text displayed in a control Hide the details
<Control used>.FontLarge = <Enlarged/Not Enlarged>
<Control used>: Control name Name of field (Static Text control or Calculated control) to be manipulated. <Enlarged/Not Enlarged>: Boolean - True if 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 Limitations In a report, the FontLarge property can only be used on: - a Static Text control.
- a URL Link control.
- a Calculated control.
- a preset control.
In a window, the FontLarge property cannot be used on: - a Spin control,
- a Web Camera control,
- a Conference control.
Note: This property only applies to ListView controls in standard "List Box" display mode.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|