Gets and sets the current visual style being used.
# Get the value of the property.propertyValue = viewport_var.visualStyle# Set the value of the property.viewport_var.visualStyle = propertyValue
#include <Core/Application/Viewport.h>// Get the value of the property.VisualStyles propertyValue = viewport_var->visualStyle();// Set the value of the property, where value_var is a VisualStyles.bool returnValue = viewport_var->visualStyle(value_var);