TimelineGroup.isDeletable Property

Parent Object: TimelineGroup

Derived from: TimelineObject.isDeletable


Defined in namespace "adsk::fusion" and the header file is <Fusion/Fusion/TimelineGroup.h>

Description

Indicates whether this TimelineObject can be deleted standalone using deleteObject(). Returns false in cases where standalone deletion is not supported, for example:

- The object is a child of a collapsed TimelineGroup (delete the parent group instead).

- The object represents a snapshot or other entry that cannot be deleted independently.

- The underlying feature has dependents whose deletion would cascade.

For TimelineGroup objects use TimelineGroup.deleteMe() rather than this method.

Syntax

"timelineGroup_var" is a variable referencing a TimelineGroup object.
# Get the value of the property.
propertyValue = timelineGroup_var.isDeletable
"timelineGroup_var" Is a variable referencing a TimelineGroup Object.
#include <Fusion/Fusion/TimelineGroup.h>

// Get the value of the property.
boolean propertyValue = timelineGroup_var->isDeletable();
"timelineGroup_var" Is a variable referencing a TimelineGroup Object.
// Get the value of the property.
propertyValue = timelineGroup_var.isDeletable;

Property Value

This is a read only property whose value is a boolean.

Version

Introduced in version September 2026