public interface CalendarEntryResizeEvent extends CalendarEntryEvent
CalendarEntryResizeEvent
is a BBj Interface that contains event information for a calendar's entry resize event.
This data class will be made available to your custom callback routine after the user finishes resizing a calendar entry
if you have previously executed the BBjCalendarWidget::setCallback()
method to register for the CalendarAPI.ON_CALENDAR_ENTRY_RESIZE()
event.
Modifier and Type | Method and Description |
---|---|
JsonObject | getEndDelta() Returns the native JavaScript Duration Object as a JsonObject that represents the amount of time the entry's end date was moved by. |
CalendarEntry | getOldCalendarEntry() Returns the old version of the calendar entry, e.g. the entry as it existed before the user resized it. |
BBjVector | getRelatedEntries() Returns a BBjVector filled with related entries, such as recurring entries or entries with the same groupId. |
JsonObject | getStartDelta() Returns the native JavaScript Duration Object as a JsonObject that represents the amount of time the entry's start date was moved by. |
getAsFormattedString, getAsJsonObject, getAsString, getCalendarUuid, getCalendarView, getEventNumber
getAltKey, getCalendarX, getCalendarY, getClientX, getClientY, getControlKey, getJsEvent, getJsEventAsFormattedString, getJsEventAsString, getMetaKey, getScreenX, getScreenY, getShiftKey
getCalendarEntry, getHtmlElement
public JsonObject getEndDelta()
Returns the native JavaScript Duration Object as a JsonObject that represents the amount of time the entry's end date was moved by.
public CalendarEntry getOldCalendarEntry()
Returns the old version of the calendar entry, e.g. the entry as it existed before the user resized it.
public BBjVector getRelatedEntries()
Returns a BBjVector filled with related entries, such as recurring entries or entries with the same groupId.
public JsonObject getStartDelta()
Returns the native JavaScript Duration Object as a JsonObject that represents the amount of time the entry's start date was moved by.