Skip to content

Version

Gets or sets the version number of the document.

1
 string myDocument.Version

Remarks

The version number is formatted as "Major"."Minor"."Revision" (e.g., "1.2.3").

Updating the version number:

1
2
var doc = $Documents.Get(id);
doc.Version = '2.5.3';