Ext.Net.CalendarView.SetStartDate C# (CSharp) Method

SetStartDate() public method

Sets the start date used to calculate the view boundaries to display. The displayed view will be the earliest and latest dates that match the view requirements and contain the date passed to this function.
public SetStartDate ( System.DateTime dt ) : void
dt System.DateTime The date used to calculate the new view boundaries
return void
        public void SetStartDate(DateTime dt)
        {
            this.Call("setStartDate", dt);
        }