VersionUpgradeEvent.ReturnStatus Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the return status of the OnVersionUpgrade event.
public:
property bool ReturnStatus { bool get(); void set(bool value); };
public bool ReturnStatus { get; set; }
member this.ReturnStatus : bool with get, set
Public Property ReturnStatus As Boolean
Property Value
Implements
Examples
In the following example, the ReturnStatus property of the VersionUpgradeEventObject object is used to indicate that the OnVersionUpgrade event was not successful:
[InfoPathEventHandler(EventType=InfoPathEventType.OnVersionUpgrade)]
public void OnVersionUpgrade(VersionUpgradeEvent e)
{
e.<span class="label">ReturnStatus</span> = false;
}
Remarks
If the ReturnStatus property is set to false, the OnVersionUpgrade event fails and the form is not opened. If set to true, the OnVersionUpgrade event is successful.
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.