Skip to main content
A newer version of this page is available. .

SchedulerSettings.BeforeExecuteCallbackCommand Property

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

Namespace: DevExpress.Web.Mvc

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

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