Viewport.isFullScreen Property

Parent Object: Viewport
Defined in namespace "adsk::core" and the header file is <Core/Application/Viewport.h>

Description

Gets and sets if the view is in full screen mode.

Syntax

"viewport_var" is a variable referencing a Viewport object.

# Get the value of the property.
propertyValue = viewport_var.isFullScreen

# Set the value of the property.
viewport_var.isFullScreen = propertyValue
"viewport_var" is a variable referencing a Viewport object.
#include <Core/Application/Viewport.h>

// Get the value of the property.
boolean propertyValue = viewport_var->isFullScreen();

// Set the value of the property, where value_var is a boolean.
bool returnValue = viewport_var->isFullScreen(value_var);

Property Value

This is a read/write property whose value is a boolean.

Version

Introduced in version September 2021