Share via


VersionUpgradeEvent.SolutionVersion Property

Gets the version number of a Microsoft Office InfoPath form template.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
'Usage

Remarks

This property can be used only during the OnVersionUpgrade event.

Example

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:

public void OnVersionUpgrade(VersionUpgradeEvent e)
{
 thisXDocument.UI.Alert("The form version: " + e.DocumentVersion + 
  "\nThe form template version: " + e.SolutionVersion);
 e.ReturnStatus = true;   
}

See Also

Reference

VersionUpgradeEvent Interface
VersionUpgradeEvent Members
Microsoft.Office.Interop.InfoPath Namespace