Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Gets the creation date and time of the document

DateTimeOffset Document.CreatedAt { get; }

Example

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

var document_created = doc.CreatedAt;

Examples

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

var document_created = doc.CreatedAt;

See Also

  • No labels