SclVersionId
Overview
SclVersionId has been superseded by SclLicenseManager getVersion. For best practice, use SclLicenseManager getVersion, even though SclVersionId remains supported.
You can use this function to identify the version of Surpac that you are running.
Synopsis
SclVersionId
Description
SclVersionId returns the identifier string of the client software (for example, Surpac). This identifier string takes the form of:
<product name> x.y.z <optional release type> <(x64)>
where
- <product name>
- x
- y
- z
- <optional release type>
- (x64)
Is a descriptive name for the product. This may include spaces.
Is the major version number.
Is the minor version number.
Is the maintenance version number.
Is optional and, if present, may be either alpha, beta or special.
Is appended to the version number for 64-bit versions of Surpac.
Examples
# # This example shows how the full version identifier for the software # can be obtained # puts "executable version id = [SclVersionId]" |