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

SchedulerSettings.FilterAppointment Property

OBSOLETE

Use the Bind method instead.

Allows you to hide specific appointments.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

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