VersionUpgradeEvent.SolutionVersion 属性

获取 Microsoft InfoPath 表单模板的版本号。

命名空间:  Microsoft.Office.Interop.InfoPath.SemiTrust
程序集:  Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)

语法

声明
ReadOnly Property SolutionVersion As String
    Get
用法
Dim instance As VersionUpgradeEvent
Dim value As String

value = instance.SolutionVersion
string SolutionVersion { get; }

属性值

类型:System.String

备注

此属性只能在 OnVersionUpgrade 事件期间使用。

重要

此成员只能由与当前打开的表单在相同域中运行的表单访问,或者由已授予跨域权限的表单访问。

示例

在以下示例中,VersionUpgradeEventObject 对象的 SolutionVersion 属性用来在消息框中显示 InfoPath 表单模板的版本号:

[InfoPathEventHandler(EventType=InfoPathEventType.OnVersionUpgrade)]
public void OnVersionUpgrade(VersionUpgradeEvent e)
{
 thisXDocument.UI.Alert("The form version: " + e.DocumentVersion + 
  "\nThe form template version: " + e.SolutionVersion);
 e.ReturnStatus = true;   
}

另请参阅

引用

VersionUpgradeEvent 接口

VersionUpgradeEvent 成员

Microsoft.Office.Interop.InfoPath.SemiTrust 命名空间