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 2 Next »

Overview

Gets or sets the version number of document.

string Document.Version { get; set; }

Remarks

Version number formatted as "Major"."Minor"."Revision"

Example

Updating version number

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

Examples

Updating version number
var doc = $Documents.Get(id);
doc.Version = '2.5.3';
  • No labels