Application.Version プロパティ
InfoPath のバージョン番号を取得します。
名前空間: Microsoft.Office.InfoPath
アセンブリ: Microsoft.Office.InfoPath (Microsoft.Office.InfoPath.dll)
構文
'宣言
Public MustOverride ReadOnly Property Version As String
Get
'使用
Dim instance As Application
Dim value As String
value = instance.Version
public abstract string Version { get; }
プロパティ値
型: System.String
アプリケーションのバージョン番号。
解説
このメンバーには、制約なしでアクセスできます。
この型またはメンバーには、Microsoft InfoPath Filler で開かれたフォームを実行中のコードからのみアクセスできます。
例
次の例では、Version プロパティを使用してアプリケーションのバージョン番号を表示します。
string appVersion = this.Application.Version;
MessageBox.Show(appVersion);
Dim appVersion As String = Me.Application.Version
MessageBox.Show(appVersion)