I am starting to use the radscheduler for one of my company's project. I would like to change the text in the print for the appointment. I tried to change the appointment.text in the event CellPrintElementFormating without any success. Is there a way to accomplish it?
Thanks
JJ
1 Answer, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 15 May 2012, 12:33 PM
Hello JJ,
Thank you for writing.
Not being able to change the appointments' text in the AppointmentPrintElementFormatting event is a known limitation and it will be improved with the next official release. For the time being, you can print custom text in your appointments by using the following approach:
public Form1()
{
InitializeComponent();
this.radScheduler1.AppointmentPrintElementFormatting += new PrintAppointmentEventHandler(radScheduler1_AppointmentPrintElementFormatting);
this.radScheduler1.AppointmentPrintElementPaint += new PrintAppointmentPaintEventHandler(radScheduler1_AppointmentPrintElementPaint);