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)

Syntax

Visual Basic (Declaration)
Property EventStatus As Nullable(Of Integer)
C#
Nullable<int> EventStatus { get; set; }
C++
property Nullable<int> EventStatus abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_EventStatus();

/** property */
public void set_EventStatus(Nullable<intvalue);
JScript
public function get EventStatus() : Nullable<int>

public function set EventStatus(value : Nullable<int>);

Remarks

See Also