API Documentation > CorelDRAW > 2025-v26 > FontList > IVGFontList
FontList.Count property
Gets the number of items in the list of fonts
Syntax:
Property Get Count() As Long
Remarks:
The Count property returns the total number of installed fonts.
Examples:
The following VBA example displays the number of fonts currently installed.
Sub Test()
MsgBox "Total number of fonts currently installed: " & FontList.Count 
End Sub