OptionsCustomization.AllowAppointmentCopy Property
Gets or sets a value that specifies whether an end-user is allowed to copy appointments.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
public UsedAppointmentType AllowAppointmentCopy { get; set; }
Public Property AllowAppointmentCopy As UsedAppointmentType
Property Value
| Type | Description |
|---|---|
| UsedAppointmentType | A UsedAppointmentType enumeration value that specifies the type of appointment to which the action can be applied. |
Property Paths
You can access the OptionsCustomization.AllowAppointmentCopy property from the following objects:
| Object Type | Path to AllowAppointmentCopy |
|---|---|
| SchedulerControl |
|
Remarks
By default, end-users are allowed to copy appointments. Use the AllowAppointmentCopy property to control the availability of this functionality to end-users with regards to an appointment's type. For instance, if the AllowAppointmentCopy property allows appointments of all types to be copied (the property is set to UsedAppointmentType.All), an end-user can copy the desired appointment by dragging it to a new time slot while holding down the Ctrl keyboard key (note that the OptionsCustomization.AllowAppointmentDrag option should be enabled to allow dragging).
NOTE
If the AllowAppointmentCopy property is set to UsedAppointmentType.Custom, then whether an end-user is allowed to copy appointments or not is decided in the SchedulerControl.AllowAppointmentCopy event handler.
To get an example of using the OptionsCustomization.Allow* properties and handling the SchedulerControl.Allow* events, refer to How to: Set End-User Restrictions.