|
Messenger::Version
The Messenger::Version property returns the current
version of the Windows Live Messenger client.
Syntax
This is a read-only property.
[number] Version;
Data Type
A floating point number representing the major and minor version
part of the version string. Example: 8.00.
Remarks
Because of the way floating point values are stored in memory,
you should never check for equality and use ranges instead. For
example, "if(Messenger.Version == 8.10)" should be replaced by
"if(Messenger.Version >= 8.10)" as the exact value of the
version as returned by this property may differ a bit (always
returning slightly bigger numbers). For a more precise value,
use VersionBuild.
Property Information
| Object |
Messenger |
| Availability |
Messenger Plus! Live 4.00 |
See Also
Messenger Object, VersionBuild.
|