UNPKG

@progress/kendo-angular-scheduler

Version:

Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.

30 lines (29 loc) 1.11 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the editable settings of the Scheduler. */ export interface EditableSettings { /** * Specifies if the user can remove events using a **Remove** icon. */ remove: boolean; /** * Specifies if the user can drag events. */ drag: boolean; /** * Specifies if the user can resize events. */ resize: boolean; /** * Specifies if the user can add new events on [`slotDblClick`](slug:api_scheduler_schedulercomponent#toc-slotdblclick) when using the editing directives. */ add: boolean; /** * Specifies if the user can edit events on [`eventDblClick`](slug:api_scheduler_schedulercomponent#toc-eventdblclick) when using the editing directives. */ edit: boolean; }