GetVersionName Method
See Also Example Applies To
Returns a string describing the version from the passed RSS_Version.
Syntax
object.GetVersionName (Version, VersionString)
| Part |
Description |
| object |
An object expression that evaluates to an RSSUtility object. |
| Version |
Required. A value from the enumerated list RSS_Version. |
| VersionString |
Optional. A boolean which if set to True adds the string "Version " to the front of the version number. |
Remarks
An example of the code fragment needed is below:
Dim X as New RSSUtility ' The Utility object
Print X.GetVersionName(RSS_V0_91)
|