company logo

ActionTypes - Action types

Action types are used in order to support different types of actions. An action name and an action type uniquely defines an action for a given data type or property.

Enumarators overview

Enumerator details

  1. UndefinedAction - Undefined action type

    Undefined actions refer to actions never to be executed. Typically, Complex actions defining a number of sub or group actions are defined with action undefined type.

    Code: 0
    to list
  2. Function - Function action

    Function actions can be called for functions that have been implemented as context class function actions. Action functions may be implemented as OSI, C++ or C# functions. Function expressions can be called via context class assigned to the resource, only. The action name corresponds to the function to be called.

    Code: 70
    to list
  3. Window - Window action

    A Window action allows opening a new window (dialog or form). The window action requires a GUI environment. Window actions can be defined in an ADKA_Windows resource object.

    Code: 87
    to list