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

« Previous Version 5 Next »

Overview

Gets the creation date and time of the document

DateTimeOffset myDocument.CreatedAt { get; }

Remarks

Create date may change between different versions of documents.

Example

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

var document_created = doc.CreatedAt;
  • No labels