TimelineObject.isDeletable Property

Parent Object: TimelineObject
Defined in namespace "adsk::fusion" and the header file is <Fusion/Fusion/TimelineObject.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

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

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

Property Value

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

Version

Introduced in version September 2026