For a system event, this property indicates whether the operation that caused the creation of this event was successful. Zero (0) indicates a successful operation; otherwise, an error code is returned.

For a custom event, this property can be set by a client application to convey state to the event action handler. Therefore, it is up to the client application and event action handler to define and interpret the value of this property. In the event action handler, this property can be retrieved from the event object passed to the handler.

Settability of this property is read-only for most users. For users who have been granted privileged write access (AccessRight.PRIVILEGED_WRITE), this property is settable only on create. After initial object creation, this property is read-only for all users.

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

ToggleSyntax

Visual Basic (Declaration)
Property EventStatus As Nullable(Of Integer)
C#
Nullable<int> EventStatus { get; set; }
Visual C++
property Nullable<int> EventStatus {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_eventStatus();
function set_eventStatus(value);

ToggleRemarks

ToggleSee Also