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 / Funciones WLanguage / Funciones estándar / Funciones de impresión
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
Selects the unit to be used for font height (created with function iCreateFont): DIDOT point or PICA point.
The PICA point is used by default.
Ejemplo
iDidotFont(True)
// Crée une police de 48 points Didot
iCreateFont(1, 48, iBold + iItalic, iRoman)
iDidotFont(False)
// Crée une police de 32 points Pica
iCreateFont(2, 32, iBold + iItalic, iRoman)
// Imprime un texte avec cette police
iPrint(iFont(1) + "Texte de taille 48 points Didot")
// Termine l'impression
iEndPrinting()
Sintaxis
iDidotFont([<Didot Unit>])
<Didot Unit>: Optional boolean
New unit to use:
  • True (default): Didot point.
  • Faux: point Pica.
Observaciones
  • In most cases, iDidotFont will only be called once, at the beginning of the project.
  • 1 PICA point = 0.353 mm and 1 DIDOT point = 0.3759 mm (approximate values).
  • iDidotFont has no effect:
    • on the print jobs performed with the report editor.
    • on the PDF prints.
      These prints use the PICA point as standard unit.
Componente: wd300prn.dll
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