API Documentation
>
CorelDRAW
>
2025-v26
>
Application
>
IVGApplication
Application.FontList property
Gets a collection of all available fonts' names
Syntax:
Property
Get
FontList
(
)
As
FontList
Remarks:
The
FontList
property returns the list of all fonts installed on the system.
Examples:
The following VBA example displays the name of the fourth installed font.
Sub ListFontName() MsgBox FontList(4) End Sub