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

Introduced: X13.

Syntax

public System.DateTime CreationDate { get; set; }
Public Property CreationDate() As System.DateTime

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);
Dim saveSettings As TXTextControl.SaveSettings = New TXTextControl.SaveSettings()
saveSettings.CreationDate = System.DateTime.Now
textControl1.Save(TXTextControl.StreamType.All, saveSettings)