Skip to main content

SchedulerSettings.BeforeExecuteCallbackCommand Property

Enables you to perform custom actions before a callback command is executed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public SchedulerCallbackCommandEventHandler BeforeExecuteCallbackCommand { get; set; }

Property Value

Type Description
SchedulerCallbackCommandEventHandler

A SchedulerCallbackCommandEventHandler delegate method allowing you to implement custom processing.

Remarks

The BeforeExecuteCallbackCommand event alerts that a callback is about to be executed.The issued command and its parameters are identified by the event’s arguments.

To know more, refer to the ASPxScheduler.BeforeExecuteCallbackCommand article.

See Also