# RefreshActor

The RefreshActor triggers the update events for the targets and/or performs the update actions after the action is executed.

# Properties

  • Parent:

    • Actor
  • Element tag: RefreshActor

# Parameter

# Parameters in the Layout

Name Type Description
refreshTargets array of Actor List of targets for which an update event is triggered or update actions are performed
refreshTriggers array of RefreshActorTrigger Parameters of the action in which the targets are updated
refreshActions array of RefreshAction Functions that must be executed after action execution

# RefreshActorTrigger

type RefreshActorTrigger = {
    action_name?: string,
    module_name?: string,
    method?: string,
}

# RefreshAction

type RefreshAction = {
    type: 'removeFromSelection',
    parameter: {
        selectionActor: SelectionActor,
    },
}
Request missing documentation