Gets and sets if the view is in full screen mode.
# Get the value of the property.propertyValue = viewport_var.isFullScreen# Set the value of the property.viewport_var.isFullScreen = propertyValue
#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);