Gets or sets if this control is currently visible.
# Get the value of the property.propertyValue = toolbarControl_var.isVisible# Set the value of the property.toolbarControl_var.isVisible = propertyValue
#include <Core/UserInterface/ToolbarControl.h>// Get the value of the property.boolean propertyValue = toolbarControl_var->isVisible();// Set the value of the property, where value_var is a boolean.bool returnValue = toolbarControl_var->isVisible(value_var);