WPS 基础接口 > 演示 API 参考 > Application > 属性 > Application.Version 属性
返回WPP 版本号。只读 String 类型。

语法

表达式.Version

表达式   一个代表 Application 对象的变量。

返回值
String

示例

本示例在一个消息框中显示WPP 版本号和内部版本号以及操作系统名称。

示例代码
let a = Application
MsgBox("Welcome to WPP version " + a.Version + ", build " + a.Build + ", running on " + a.OperatingSystem + "!")


请参阅