DocumentVersion Class


This class uniquely identifies an edition of a given document.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 18.0.0.0 (18.0.0.420)
Since: 2015

Syntax

C#
public class DocumentVersion : IDisposable
Visual Basic
Public Class DocumentVersion _
	Implements IDisposable
Visual C++
public ref class DocumentVersion : IDisposable

Remarks

DocumentVersion consists of two parts - a GUID and an integer. The GUID is updated as new elements are created in the document, but it is not necessarily changed whenever any individual change is made to the document. The integer is updated when the document is saved.

The GUID will change as changes are made to a model, so it should not be treated as a static value.

This class does not contain any time information - you cannot compare two DocumentVersions and know which document is newer. It can be used to tell whether a document has changed since it was last inspected. See [!:Autodesk::Revit::DB::BasicFileInfo::GetDocumentVersion()]

Inheritance Hierarchy

System Object
Autodesk.Revit.DB DocumentVersion

See Also