FontScaling Property
The FontScaling property contains the scaling of the font.
Syntax
PrintDialogOptions.FontScaling [=long]
|
Possible Values
Long value that specifies or retrieves the scaling.
|
The property is read/write.
Remarks
Examples
The following example prints the document that the user requested to print with a specified scaling of 12.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
function OnShowPrintDialog(SKBrowser, options)
{
options.FontScaling = 12;
return false;
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top