Completed
Last Updated: 26 Feb 2014 15:09 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 18 Oct 2013 10:27
Category: Scheduler/Reminder
Type: Feature Request
1
ADD. RadScheduler -SchedulerMonthlyPrintStyle should support showing the appointment text
Add an option for SchedulerMonthlyPrintStyle to show the text of the appointments, not only the dates.
1 comment
ADMIN
Ralitsa
Posted on: 26 Feb 2014 15:09
You need to subscribe to the AppointmentElementFormatting event of SchedulerMonthlyPrintStyle and set the ShowHours property to false. Please take a look at the following example: 
void schedulerPrintStyleMontly_AppointmentElementFormatting(object sender, PrintAppointmentEventArgs e)
{
    e.AppointmentElement.ShowHours = false;
}