Specifies whether to reset the lifecycle state of the new checked-in version of a document to the initial state of its associated document lifecycle policy (true) or not (false). If the ResetLifecycleOnCheckin property of a document's associated DocumentLifecyclePolicy object is set to false, the lifecycle state of the document will remain the same from one version to the next unless you explicitly change it using the document's ChangeState method.


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

Syntax

Visual Basic (Declaration)
Property ResetLifecycleOnCheckin As Nullable(Of Boolean)
C#
Nullable<bool> ResetLifecycleOnCheckin { get; set; }
C++
property Nullable<bool> ResetLifecycleOnCheckin abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_ResetLifecycleOnCheckin();

/** property */
public void set_ResetLifecycleOnCheckin(Nullable<boolvalue);
JScript
public function get ResetLifecycleOnCheckin() : Nullable<bool>

public function set ResetLifecycleOnCheckin(value : Nullable<bool>);

Remarks

See Also