API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.PanoseMatching property
Gets or sets the Panose Font Matching type
Syntax:
Property Get PanoseMatching() As cdrPanoseMatchingType
Property Let PanoseMatching(ByVal Value As cdrPanoseMatchingType)
Remarks:
The PanoseMatching property returns or specifies the default behavior when the document being opened contains fonts that are not installed on the system.
Examples:
The following VBA example specifies that non-existing fonts are replaced permanently and automatically with the closest font matches available on the system.
Sub MatchingPanose()
PanoseMatching = cdrPanosePermanent
OpenDocument "C:\My Documents\Graphic1.cdr" 
End Sub