ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Print functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
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.
Example
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()
Syntax
iDidotFont([<Didot Unit>])
<Didot Unit>: Optional boolean
New unit to use:
  • True (default): Didot point.
  • False Pica point.
Remarks
  • 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.
Component: wd300prn.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help