Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1225
UltraMonthViewMulti setting bold
posted

 I am using an UltraMonthViewMulti control which has its CalendarInfo set to an UltraCalendarInfo which I load dynamically (I am not using AppointmentBinding and am loading the appointment collection based on the days UltraCalendarInfo.activeDay).  When I load all of the appointments into the UltraCalendarInfo, then the UltraMonthViewMulti  displays any days with appointments as bold.  Now that I am no longer loading all the appointments, I would like to manually set this up, i.e. loop though a set of days and set the day to bold based on my own logic. 

Something like this:

For theDate as date = startDate to endDate

dim d as day  = CalendarInfo .getDay(theDate, false)

d.apprearnce.font.bold = true

next

 

but there is no apprearance in the day class.  How can I do this ?