The event action object that defines the actions to be taken when a event occurs that is subscribed to by a Subscription-based object (ClassSubscription, ClassWorkflowSubscription, InstanceSubscription, InstanceWorkflowSubscription). You set the property with an EventAction object, which must already exist in the object store. You then specify the property when you create the Subscription-based object.

Once this property is set, the Content Engine adds the Subscription-based object to the EventAction object's Subscriptions collection property.

Namespace:  FileNet.Api.Events
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property EventAction As IEventAction
C#
IEventAction EventAction { get; set; }
Visual C++
property IEventAction^ EventAction {
	IEventAction^ get ();
	void set (IEventAction^ value);
}
JavaScript
function get_eventAction();
function set_eventAction(value);

ToggleRemarks

ToggleSee Also