Provides a set of constants to specify whether to check in a document reservation as a new minor or new major version. During a minor version check-in, the new minor document version is marked as in-process (its VersionStatus property is set to IN_PROCESS) and the previous in-process minor document version (if it exists) is marked as superseded (its VersionStatus property is set to SUPERSEDED). During a major version check-in, the new major document version is marked as released (its VersionStatus property is set to RELEASED) and the previous released major document version and in-process minor document version (if they exist) are marked as superseded.

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

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration CheckinType
C#
public enum CheckinType
Visual C++
public enum class CheckinType
JavaScript
FileNet.Api.Constants.CheckinType = function();
FileNet.Api.Constants.CheckinType.createEnum('FileNet.Api.Constants.CheckinType', false);

ToggleMembers

TypeMember nameDescription
MAJOR_VERSION
Specifies that a document reservation will be checked in as a new major version.
MINOR_VERSION
Specifies that a document reservation will be checked in as a new minor version.

ToggleSee Also