Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

SchedulerOptions.CustomizeReminderEventTypes Event

Occurs when the business object types that supply notifications are collected.

Namespace: DevExpress.ExpressApp.Scheduler.Win

Assembly: DevExpress.ExpressApp.Scheduler.Win.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Scheduler.Win

Declaration

public event EventHandler<NotificationEventTypesEventArgs> CustomizeReminderEventTypes

Event Data

The CustomizeReminderEventTypes event's data class is DevExpress.ExpressApp.Scheduler.NotificationEventTypesEventArgs.

Remarks

For more information, refer to the following Module event description: CustomizeReminderEventTypes.

The following example demonstrates how to handle this event:

File: MySolution.Win\Startup.cs.

using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
    public static WinApplication BuildApplication(string connectionString) {
        var builder = WinApplication.CreateBuilder();
        builder.UseApplication<MySolutionWindowsFormsApplication>();
        builder.Modules
            // ...
            .AddScheduler(options => {
                options.CustomizeReminderEventTypes += (s, e) => {
                    // ...
                };
            })
        // ...
    }
    // ...
}
See Also