[]
        
(Showing Draft Content)

C1.Win.Schedule.C1Schedule.AppointmentCustomAction

AppointmentCustomAction Event

Occurs immediately before a custom action of an C1.Schedule.Appointment object executes.

Namespace: C1.Win.Schedule
Assembly: C1.Win.Schedule.8.dll
Syntax
public event CancelAppointmentEventHandler AppointmentCustomAction
Returns
Type Description
CancelAppointmentEventHandler Occurs immediately before a custom action of an object executes.
Remarks

To cancel default handling, set CancelAppointmentEventArgs.Cancel property to true.

Examples
private void c1Schedule1_AppointmentAdded(object sender, AppointmentEventArgs e)
{
	// create a new action
	Action action = new Action();
	action.Command = "http://www.grapecity.com";
	// set appointment action
	e.Appointment.Action = action;
}