Packagecom.keepcore.calendar.view.renderers
Interfacepublic interface ICalendarMonthHeaderRenderer extends mx.core.IUIComponent, mx.core.IInvalidating
Implementors CalendarMonthHeaderRendererAbstract

The ICalendarMonthHeaderRenderer interface defines the interface for calendar month header renderers (used in year view).



Public Properties
 PropertyDefined By
  calendarMonth : CalendarMonth
Reference to the current month.
ICalendarMonthHeaderRenderer
Public Methods
 MethodDefined By
  
localToDateTime(coordX:Number = -1, coordY:Number = -1, onlyCurrentDayTime:Boolean = false, eventTimeStepMultiple:Boolean = true):Date
Must return the date according to the mouse position or defined coordinate.
ICalendarMonthHeaderRenderer
Property Detail
calendarMonthproperty
calendarMonth:CalendarMonth

Reference to the current month.


Implementation
    public function get calendarMonth():CalendarMonth
    public function set calendarMonth(value:CalendarMonth):void
Method Detail
localToDateTime()method
public function localToDateTime(coordX:Number = -1, coordY:Number = -1, onlyCurrentDayTime:Boolean = false, eventTimeStepMultiple:Boolean = true):Date

Must return the date according to the mouse position or defined coordinate.

Parameters

coordX:Number (default = -1) — X coordinate
 
coordY:Number (default = -1) — Y coordinate
 
onlyCurrentDayTime:Boolean (default = false) — if true returns a date with 0 for hours, minutes & seconds.
 
eventTimeStepMultiple:Boolean (default = true) — indicates if result is a multiple of eventTimeStep

Returns
Date