Skip to content

CreatedAt

Gets the creation date and time of the document

1
readonly DateTimeOffset myDocument.CreatedAt

Remarks

Create date may change between different versions of documents.

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