Hi.
Once the user loads the form with an UltraDayView control in it, I would like to automatically scroll the control so that the CurrentTimeIndicator would be visible. Using PerformAction, I have been able to only scroll to the FirstWorkingHourTimeSlot. Is there any way I would be able to accomplish that?
Thanks in advance.
Ivan
Hi Ivan,
You can scroll the current time into view using the following line:
ultraDayView1.EnsureTimeSlotVisible(DateTime.Now, true);
Please let me know whether this works for you.
Hi Mike.
That worked perfectly.
Thank you!