GetActionType

Description

Returns the type of the current action associated with the current entity. Typically used in base action hooks.

Note: A Record_script_alias is not a true entity action. Therefore, the behavior of this function is undefined when used in a Record_script_alias action.

Syntax

VBScript


entity.GetActionType 

Perl


$entity->GetActionType(); 
Identifier
Description
entity
An Entity object corresponding to a record in a schema.
Return value
A String containing the type of the current action associated with the current entity.

Examples

VBScript


actionType = entity.GetActionType 

Perl


$actionType = $entity->GetActionType();