_Application3.Version 属性
获取 InfoPath 版本号。
命名空间: Microsoft.Office.Interop.InfoPath.SemiTrust
程序集: Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)
语法
声明
ReadOnly Property Version As String
Get
用法
Dim instance As _Application3
Dim value As String
value = instance.Version
string Version { get; }
属性值
实现
_Application2.Version
_Application.Version
备注
应用程序的版本号不包含名称。若要获取应用程序的名称,请使用 Name 属性。
若要获取表单模板的版本号,请使用 Version 属性。
重要
可以无限制访问此成员。
示例
在以下示例中,Application 对象的 Version 属性用于在消息框中显示应用程序的版本号:
thisXDocument.UI.Alert("Application version: " +
thisApplication.Version);
thisXDocument.UI.Alert("Application version: " & _
thisApplication.Version)