Sets the document's creation date which will be saved in the document.
Introduced: X13.
public System.DateTime CreationDate { get; set; }Public Property CreationDate() As System.DateTimeThe following example shows how to use the Creation
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)