次の方法で共有


VersionUpgradeEvent.SolutionVersion プロパティ

定義

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 にのみ使用できます。

適用対象