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