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