AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de gestión de fuentes
  • Font variable
  • Limits
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Advertencia
A partir de la versión 27, this property is kept for backward compatibility. It is recommended to use the new CharacterSpacing property to manage character spacing.
The Large property allows you to:
  • Find out whether a Font variable is enlarged.
  • Enlarge (or not) a Font variable.
Remark: Font stretching can be:
  • Normal: character width is normal.
  • Condensed: character width is reduced (property Condensed).
  • Extended: character width is increased (property Extended).
  • Large: character width is increased to the maximum.
Ejemplo
// Définir les caractéristiques d'une variable de type Police
Police1 is Font
Police1.Nom = "Arial"
Police1.Taille = 14
Police1.Large = True
// Appliquer la police au champ "MonChamp"
MyControl.Police = Police1
Sintaxis

Finding out whether a Font variable is enlarged Ocultar los detalles

<Result> = <Font>.Large
<Result>: Boolean
  • True if the specified font is enlarged,
  • False otherwise.
<Font>: Font variable
Name of the Font variable to be used.

Enlarging (or not) a Font variable Ocultar los detalles

<Font>.Large = <Large/Not large>
<Font>: Font variable
Name of the Font variable to be used.
<Large/Not large>: Boolean
  • True if the specified font must be enlarged,
  • False otherwise.
Observaciones

Font variable

A font can be created from a Font variable.
To define the font characteristics, use:
This font can be used:

Limits

The properties that define character stretch options (Condensed, Extended and Large properties) are supported only if the specified Font variable is used for printing (print font or font of controls in a report).
In other cases (fonts used for drawings, charts or window controls), these characteristics are ignored.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local