evCreate API 5.7 Help

Actions

The Actions subsection of the Object section of the evCreate API includes enumerations, interfaces, and functions to manage actions.

actions namespace

The Actions subsection of the Object evCreate API section is accessed with the actions namespace inside the object namespace:

evCreate.object.actions.Function()

Enumerations

EvPageActionType

An enumeration of options for the target page of a page action.

Interfaces

EvLayerAction

An interface that specifies a layer action.

EvPageAction

An interface that specifies a page action.

Functions

ClearAll(page?: EvItem): Promise<void>

A function to clear a given page item from all attached actions.

ClearLayer(objs: EvItem[]): Promise<void>

A function to clear given object items from all attached layer actions.

ClearPage(objs: EvItem[]): Promise<void>

A function to clear given object items from all attached page actions.

SetLayerAction(obj: EvItem, layerActions: EvLayerAction[], tooltip?: string): Promise<void>

A function to attach given layer actions to a given object item.

SetPageAction(obj: EvItem, action: EvPageAction, tooltip?: string): Promise<void>

A function to attach a given page action to a given object item.

26 March 2025