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