Skip to content

Id

Gets the globally unique identifier of document.

1
readonly string myDocument.Id

Remarks

Example

1
2
3
4
5
var doc = $Documents.New('My Document');
doc.Files.AddPDF('<p>Hello</p>', 'report.pdf');
doc.Publish(["myfolder", "otherfolder"]);

var id = doc.Id;

See Also