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