Sets the document's creation date which will be saved in the document.

Introduced: X13.

Syntax

public System.DateTime CreationDate { get; set; }

Examples

The following example shows how to use the CreationDate property.

TXTextControl.SaveSettings saveSettings = new TXTextControl.SaveSettings();
saveSettings.CreationDate = System.DateTime.Now; //CreationDate is Now!
textControl1.Save(TXTextControl.StreamType.All, saveSettings);