Hi Ha Jung,
Thanks for using Syncfusion product.
To move the selection programmatically, you could using the CurrentCell.MoveTo method. Please refer the following code example and the sample.
C#
this.scheduleControl1.GetScheduleHost().CurrentCell.MoveTo(3, 4); |
In this above attached sample, MonthShowFullWeek property has enabled. If you have disable this property, week days are covered by two rows. So, if you move to third row you could use the following code example.
C#
this.scheduleControl1.GetScheduleHost().CurrentCell.MoveTo(6, 4); |
Note:
To access the CurrentCell property, you could attach the Syncfusion.Grid.Windows.dll in your project.
Arulraj A