Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Version: Available or changed with runtime version 1.0.
Represents a version matching the format: Major.Minor.Build.Revision .
Static methods
The following methods are available on the Version data type.
| Method name | Description |
|---|---|
| Create(Text) | Creates a version object from the provided string. The string should be in the format W.X.Y.Z, where W, X, Y and Z represent positive integers and where Y and Z are optional. If the input string is not in the expected format, an exception is thrown. |
| Create(Integer, Integer [, Integer] [, Integer]) | Creates a version object from the major, minor, build and revision numbers provided. |
Instance methods
The following methods are available on instances of the Version data type.
| Method name | Description |
|---|---|
| Build() | Gets the build number of the version. |
| Major() | Gets the major number of the version. |
| Minor() | Gets the minor number of the version. |
| Revision() | Gets the revision number from the version. |
| ToText() | Converts the value to a text. Equivalent to calling Format(value, 0, 0). |