次の方法で共有


VersionUpgradeEvent.DocumentVersion プロパティ

定義

Microsoft 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 フォームのバージョン番号をメッセージ ボックスに表示します。

[InfoPathEventHandler(EventType=InfoPathEventType.OnVersionUpgrade)]
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 にのみ使用できます。

重要: このメンバーにアクセスできるのは、現在開いているフォームと同じドメインで実行されているフォーム、またはクロスドメインアクセス許可が付与されているフォームのみです。

適用対象