編輯

共用方式為


VersionUpgradeEvent.ReturnStatus Property

Definition

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:

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.

Applies to