Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Gets the globally unique identifier of document.

string myDocument.Id { get; }

Example

Code Block
languagejs
var doc = $Documents.New('My Document');
doc.Files.AddPDF('<p>Hello</p>', 'report.pdf');
doc.Publish(["myfolder", "otherfolder"]);

var id = doc.Id;

See Also