RegisterFont Method

Top  Previous  Next

Lokas Software AWinstall Online Help
Start Page
Engine Functionality
Tasks and Actions
Installer Variables
Reading from Registry and Environment
Tips And Tricks
Frequently Asked Questions
Installer Actions
Extract Files with Folders
Register COM DLL
Register COM Type Library
Create Shortcuts and Start Menu Items
Register Fonts
Add Registry Keys
Add Keys from .reg file
Add Keys from System Registry
Run External Programs
Add Uninstall Shortcut
Setup Builder Interface
Main Windows
Property Pane
Project Tree
Event Log
Menu bar commands
File
Edit
View
Project
Task
Help
Toolbars
Standard
Actions
Extending your setups
Script Actions
Installer Object
AddRegKey Method
CancelInstall Method
CopyFile Method
CreateObject Method
CreateShortcut Method
RegisterFont Method
RegisterServer Method
RegisterTypeLib Method
RunProgram Method
ShowMessage Method
Variables Method
VersionMajor Property
VersionMinor Property
General Information
Product Registration
History of Changes
  download AWinstall

Registers a new font file in the system.

[VBScript]

Installer.RegisterFont FontPath

 

[JScript]

Installer.RegisterFont(FontPath);

Parameters

FontPath

Path to font file to install.

Remarks

This method adds the font file specified by the FontPath parameter to the system font table.

The following font files are supported:

TrueType fonts (.ttf);

Bitmap font files (.fnt);

Legacy font formats (.fon);

PostScript OpenType fonts (.otf).

Installer variables are supported in the FontPath parameter. To emit the value of installer variable MyVar, use the following form: ${MyVar}.

Uninstall support

This action does not support automatic uninstallation.

Example (VBScript)

Installer.RegisterFont "${ProductPath}\FontFile.ttf"

Example (JScript)

Installer.RegisterFont("${ProductPath}\\FontFile.ttf");

© 2007 Lokas Software