GetActionName

Description

Returns the name of the current action associated with the current entity. Used in base action hooks.
Remarque : Do not use this method with a Record script. Etant donné que Record_script_alias n'est pas une véritable action d'entité, le comportement de cette fonction n'est pas défini lorsqu'elle est utilisée dans une action Record_script_alias.

Syntaxe

VBScript

entity.GetActionName 

Perl

$entity->GetActionName(); 
Identificateur
Description
entity
An Entity object corresponding to a record in a schema.
Valeur renvoyée
A String containing the name of the current action associated with the current entity.

Exemples

VBScript

actionName = entityObj.GetActionName 

Perl

$actionName = $entityObj->GetActionName(); 

Feedback