Skip to content

CreatedAt

Gets the creation date and time of the document.

1
readonly DateTimeOffset myDocument.CreatedAt

Remarks

The creation date may change between different versions of the document.

Example

1
2
3
4
var doc = $Documents.New('My Document');
doc.Files.AddPDF('<p>Hello</p>', 'report.pdf');

var document_created = doc.CreatedAt;

See Also