API Documentation > CorelDRAW > 2025-v26 > Document > IVGDocument
Document.FullFileName property
Returns the path and file name of an instance of a document
Syntax:
Property Get FullFileName() As String
Property Let FullFileName(ByVal Value As String)
Remarks:
The FullFileName property returns the filename and file path where a document is saved. See also the Document.Title property.
Examples:
The following VBA example shows the path and filename of the document if the document has been saved to a file.
Sub Test()
If ActiveDocument.FullFileName = "" Then
  MsgBox "Current document is not saved yet"
Else
  MsgBox "Current document was saved to: " & ActiveDocument.FullFileName
End If 
End Sub