VersionUpgradeEvent.DocumentVersion 属性

定义

获取 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 使用。

适用于