VersionUpgradeEvent.SolutionVersion 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 Microsoft Office InfoPath 表单模板的版本号。
public:
property System::String ^ SolutionVersion { System::String ^ get(); };
public string SolutionVersion { get; }
member this.SolutionVersion : string
Public ReadOnly Property SolutionVersion As String
属性值
示例
在以下示例中,对象的 SolutionVersion 属性 VersionUpgradeEventObject 用于在消息框中显示 InfoPath 表单模板的版本号:
public void OnVersionUpgrade(VersionUpgradeEvent e)
{
thisXDocument.UI.Alert("The form version: " + e.DocumentVersion +
"\nThe form template version: " + e.<span class="label">SolutionVersion</span>);
e.ReturnStatus = true;
}
注解
此属性只能在事件期间 OnVersionUpgrade 使用。