Indicates if the group is collapsed or expanded.
# Get the value of the property.propertyValue = timelineGroup_var.isCollapsed# Set the value of the property.timelineGroup_var.isCollapsed = propertyValue
#include <Fusion/Fusion/TimelineGroup.h>// Get the value of the property.boolean propertyValue = timelineGroup_var->isCollapsed();// Set the value of the property, where value_var is a boolean.bool returnValue = timelineGroup_var->isCollapsed(value_var);