PdfInfo.ModifiedDate Property

Gets or sets the date and time the document was most recently modified.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public DateTime? ModifiedDate { get; set; }
VB
Public Property ModifiedDate As DateTime?
	Get
	Set

Property Value

Type: Nullable<DateTime>
The date and time the document was most recently modified or null if there is no value set for this property.

Remarks

Default value: null.

Returned date and time (what you get) expressed in UTC (Coordinated Universal Time).

Provided date and time (what you set) can be in UTC or local time zone but UTC is recommended. Milliseconds of the provided time are ignored.

The library can automatically update the value of this property before saving the document. Please see the UpdateModifiedDate option for more information.

See Also