API Documentation > CorelDRAW > 2025-v26 > Window > IVGWindow
Window.FullScreen property
Gets or sets the window's Full Screen state
Syntax:
Property Get FullScreen() As Boolean
Property Let FullScreen(ByVal Value As Boolean)
Remarks:
The FullScreen property returns or specifies whether the active window is visible at full-screen size. If the property is set to True, the active window fills up the full screen. If the value is False, the active window is viewed in the normal application window.
Examples:
The following VBA example enables full-screen preview mode.
Sub Test()
ActiveWindow.FullScreen = True 
End Sub