|
|
|
|
- Properties specific to InfoVersion variables
- Functions
InfoVersion (Type of variable) In french: InfoVersion
The InfoVersion type is used to find out the characteristics of a specific application version. The characteristics of this version are returned by several WLanguage properties.
sRes is string = AppliListVersion() IV is InfoVersion sDisplay is string = [ Number = %1 Date = %2 Size = %3 bytes Comment = %4 Enabled = %5 Forced = %6 Forbidden = %7 ] FOR EACH STRING MyString OF sRes SEPARATED BY CR IV = AppVersionInfo(MyString) Trace(StringBuild(sDisplay, ... IV.VersionNumber, IV.Date, ... IV.Size, IV.Comment, ... IV.Enabled, IV.Forced, IV.Forbidden)) Trace("===============================================") END
Remarks Properties specific to InfoVersion variables The following properties can be used to handle an InfoVersion variable:
| | | Property name | Type used | Effect |
---|
Enabled | Boolean | - True if the version is enabled (which means visible by the client computers),
- False otherwise.
This property is read-only. | Comment | Character string | Information regarding the new features of version. This information was specified by the developer. The content of this property can be: - a text,
- a text, RTF or CHM file,
- a "link" to a help page (help about new features generated when creating the executable).
This property is read-only. | Date | DateTime | Version release date. This property is read-only. | Forced | Boolean | - True if the version is forced,
- False otherwise.
This property is read-only. | Forbidden | Boolean | - True if this version is forbidden,
- False if the version is allowed.
This property is read-only. | VersionNumber | Character string | Number of the version. This property is read-only. | Size | Integer | Size of the version on disk (in bytes). This property is read-only. |
Functions The following functions can be used to handle an InfoVersion variable:: | | AppVersionInfo | Returns information about a version available on the setup server. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|