Specifies a VersionStatus constant that indicates the current version status of this document version.

The VersionStatus property can have one of the following values:

  • IN_PROCESS: Indicates an in-process document version. An in-process version is a version that has been checked in and is the latest minor version. Note that only one version at a time in a given version series can be in the IN_PROCESS state. When a reservation version is checked in as a minor version and becomes the new in-process version, the previous in-process version becomes a superseded version.
  • RELEASED: Indicates a released document version. A released version is a version that has been checked in and is the latest major version. Note that only one version at a time in a given version series can be in the RELEASED state.
  • RESERVATION: Indicates a reservation document version. A reservation version is a version that has been checked out.
  • SUPERSEDED: Indicates a superseded document version. A superseded version is a major or minor version that has been replaced by a later version.

Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
ReadOnly Property VersionStatus As VersionStatus
C#
VersionStatus VersionStatus { get; }
C++
property VersionStatus VersionStatus abstract  {
    VersionStatus get();
}
J#
/** property */
public VersionStatus get_VersionStatus();
JScript
public function get VersionStatus() : VersionStatus

Remarks

See Also