Share

CAM.setupCreated Event

Parent Object: CAM
Defined in namespace "adsk::cam" and the header file is <Cam/CAM/CAM.h>

Description

The SetupCreated event fires when a new setup is created.

Syntax

-------- Import ---------
# Import fusion360utils folder, which includes event_utils.py.
from ...lib import fusion360utils as futil

-------- Global variables ---------
# Global variable used to maintain a reference to all event handlers.
local_handlers = []

-------- Connect the handler to the event. ---------
# "cAM_var" is a variable referencing a CAM object.
# "cAM_setupCreated" is the event handler function.
futil.add_handler(cAM_var.setupCreated, cAM_setupCreated, local_handlers=local_handlers)

-------- Event handler function definition ---------
# Event handler for the setupCreated event.
def cAM_setupCreated(args: adsk.cam.SetupEventArgs):
# Code to react to the event.
app.log('In cAM_setupCreated event handler.')

Property Value

This is an event property that returns a SetupEvent.

Version

Introduced in version April 2023

Was this information helpful?