Unfortunately, the Lite edition doesn't support event selecting.
In the Pro version, you can select the events using SelectedEvents list (in the Scheduler). It's a list of simplified EventInfo objects that only require the event id.
Example:
DayPilotScheduler1.SelectedEvents.Add(EventInfo.Create("123"))
Where "123" is the event id. You can add multiple events to the selection this way.