You can find an example in the documentation, Event Moving page (expand the ASP.NET WebForms section to see it):
<DayPilot:DayPilotScheduler runat="server" id="DayPilotScheduler1"
  ...
  
  ClientObjectName="dps"
  EventMoveHandling = "JavaScript"
  EventMoveJavaScript="if (confirm('Do you really want to move this event?')) { dps.eventMoveCallBack(e, newStart, newEnd, newResource); } "
  OnEventMove="DayPilotScheduler1_EventMove" 
/>
The default client object name is derived from the control ID. In most cases, it is the control ID but if you use a complex layout, it may include parent IDs. That’s why it is recommended to specify it explicitly using the ClientObjectName property.