Application.Version Property

[Read-only] This property returns the HotDocs product version number as a String value. For example, if you have HotDocs 11 installed, this property returns 11.

Syntax

string Version [ get ]

Example

The following Visual C# example displays the HotDocs version number in a message box:

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
        MessageBox.Show(app.Version);
    }
}