Skip to main content

SchedulerSettings.FilterAppointment Property

OBSOLETE

Use the Bind method instead.

Allows you to hide specific appointments.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

[Obsolete("Use the SchedulerExtension.Bind method instead.")]
public PersistentObjectCancelEventHandler FilterAppointment { get; set; }

Property Value

Type Description
PersistentObjectCancelEventHandler

A method to which custom processing is delegated.

Remarks

This property is no longer in use. The SchedulerExtension object provides the following SchedulerExtension.Bind method overload that allows you to hide specific appointments or resources:

public SchedulerExtension Bind( 
   PersistentObjectCancelMethod filterAppointmentMethod,  
   PersistentObjectCancelMethod filterResourceMethod 
);
See Also