Back to Devexpress

TimeIntervalsValidationEventHandler Delegate

corelibraries-devexpress-dot-xtrascheduler-dot-reporting-b19e5ee6.md

latest2.1 KB
Original Source

TimeIntervalsValidationEventHandler Delegate

Represents a method that will handle the SchedulerPrintAdapter.ValidateTimeIntervals event.

Namespace : DevExpress.XtraScheduler.Reporting

Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll

NuGet Package : DevExpress.Scheduler.CoreDesktop

Declaration

csharp
public delegate void TimeIntervalsValidationEventHandler(
    object sender,
    TimeIntervalsValidationEventArgs e
);
vb
Public Delegate Sub TimeIntervalsValidationEventHandler(
    sender As Object,
    e As TimeIntervalsValidationEventArgs
)

Parameters

NameTypeDescription
senderObject

The event source. This parameter identifies the SchedulerPrintAdapter which raised the event.

| | e | TimeIntervalsValidationEventArgs |

A TimeIntervalsValidationEventArgs object which contains event data.

|

Remarks

When creating a TimeIntervalsValidationEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see Events and Delegates in MSDN.

See Also

DevExpress.XtraScheduler.Reporting Namespace