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
320
UltraWeekView
posted

Hello,

I have found a way to change the timeslot color for a certain time period on the dayview using the code below however when I switch to the week view the red color doesn't show up. How would I change the timeslot color in the ultraweekview since there is no timeslot property link in ultradayview

 

 

For Each slot As TimeSlot In actDayView.TimeSlots

If slot.StartTime.Hour > 10 AndAlso slot.EndTime.Hour < 13 Then

                    slot.WorkingHourAppearance.BackColor =Color.Red

End If

Next

Parents Reply Children