ReadOnly property for AdvSmoothCalendarGroup

Is it posible to add a ReadOnly property for AdvSmoothCalendarGroup?

I'm using a TAdvSmoothCalendarGroup component to show/load multiple selected days ranges by code. It works fine, but user can cancel the current selection just clicking on any date. There is no readonly property.

I have been looking for an event to cancel user mouse clicks or something with no success. Everytime I click the calendar, selection disappears and I have to reload the date ranges again.

Thanks

Luis C.

Hi, 


You can simply set the Enabled property to false in the constructor of the form

procedure TForm1.FormCreate(Sender: TObject);
begin
  AdvSmoothCalendarGroup1.Enabled := False;
end;