Skip to main content
Tab

TabControlCancelEventArgs.Cancel Property

Gets or sets a value indicating whether the command which raised an event should be canceled.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool Cancel { get; set; }

Property Value

Type Description
Boolean

true if the operation raising the event should be canceled; otherwise, false.

Remarks

The TabControlCancelEventArgs object is passed to events that fire before specific initiated actions are completed. The Cancel property of this object enables you to cancel the action which is about to be performed.

For instance, this property is useful when you handle a tab’s ASPxTabControlBase.ActiveTabChanging event. Set this property to true to cancel the changing of the active tab. This can be used if you want to prohibit any change of the active tab with respect to specific conditions.

See Also