Specifies the date and time that this document was checked in. The Content Engine stores dates and times using Coordinated Universal Time (UTC).

The server sets this property on a document version when it is checked in and it remains set throughout the life of the document version. When a document is checked out, the server sets this property on the document's reservation object to null.

Settability of this property is read-only for most users. Users who have been granted privileged write access (AccessRight.PRIVILEGED_WRITE) can set this property on a document while it is being checked in. Note that although the settability of this property for users with privileged write access is SETTABLE_ONLY_BEFORE_CHECKIN, those users can not set this property on a document prior to check in; it can be set only while a document is being checked in.


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

Syntax

Visual Basic (Declaration)
Property DateCheckedIn As Nullable(Of Date)
C#
Nullable<DateTime> DateCheckedIn { get; set; }
C++
property Nullable<DateTime> DateCheckedIn abstract  {
    Nullable<DateTime> get();
    void set(Nullable<DateTimevalue);
}
J#
/** property */
public Nullable<DateTime> get_DateCheckedIn();

/** property */
public void set_DateCheckedIn(Nullable<DateTimevalue);
JScript
public function get DateCheckedIn() : Nullable<DateTime>

public function set DateCheckedIn(value : Nullable<DateTime>);

Remarks

See Also