API Documentation > CorelDRAW > 2025-v26 > RecentFiles > IVGRecentFiles
RecentFiles.Maximum property
Gets the maximum number of item that can be stored in the Recent File list
Syntax:
Property Get Maximum() As Long
Remarks:
The Maximum property returns the number of items that can be stored in the Most Recently Used (MRU) list of CorelDRAW.
Examples:
The following VBA example displays the maximum number of documents that can be stored in the MRU list of CorelDRAW.
Sub FilesMax()
MsgBox RecentFiles.Maximum 
End Sub