Skip to main content

SchedulerSettings.CustomErrorText Property

Enables you to provide custom error descriptions.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public ASPxSchedulerCustomErrorTextEventHandler CustomErrorText { get; set; }

Property Value

Type Description
ASPxSchedulerCustomErrorTextEventHandler

A ASPxSchedulerCustomErrorTextEventHandler delegate method allowing you to implement custom processing.

Remarks

The CustomErrorText event occurs when an exception is raised within the Scheduler, and allows you to change the default error text. You can localize error messages via this event.

Use the ASPxSchedulerCustomErrorTextEventArgs.ErrorText property of the event’s arguments object to specify the error text for the exception returned by the ASPxSchedulerCustomErrorTextEventArgs.Exception property.

See Also