ansys.scade.apitools.create.data_def.add_state_machine_state#

ansys.scade.apitools.create.data_def.add_state_machine_state(sm: scade.model.suite.StateMachine, name: str, position: Tuple[float, float] = None, size: Tuple[float, float] = None, kind: SK = SK.NORMAL, display: DK = DK.GRAPHICAL) scade.model.suite.State#

Create a state in a state machine.

Parameters:
smsuite.StateMachine

Input state machine.

namestr.StateMachine

Name of the state.

positionTuple[float, float], default: None

Position of the state, expressed in 1/100th of mm. This value is considered if and only if the state machine has a graphical representation.

sizeTuple[float, float], default: None

Size of the state, expressed in 1/100th of mm. This value is considered if and only if the state machine has a graphical representation.

kindSK, default: NORMAL

Kind of the state.

displayDK, default: GRAPHICAL

Layout of the state.

Returns:
suite.State