VersionUpgradeEvent.SolutionVersion Property
Gets the version number of a Microsoft InfoPath 2010 form template.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property SolutionVersion As String
Get
'Usage
Dim instance As VersionUpgradeEvent
Dim value As String
value = instance.SolutionVersion
string SolutionVersion { get; }
Property Value
Type: System.String
Remarks
This property can be used only during the OnVersionUpgrade event.
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
Examples
In the following example, the SolutionVersion property of the VersionUpgradeEventObject object is used to display the version number of an InfoPath form template in a message box:
[InfoPathEventHandler(EventType=InfoPathEventType.OnVersionUpgrade)]
public void OnVersionUpgrade(VersionUpgradeEvent e)
{
thisXDocument.UI.Alert("The form version: " + e.DocumentVersion +
"\nThe form template version: " + e.SolutionVersion);
e.ReturnStatus = true;
}