Packagecom.distriqt.extension.calendar.objects
Classpublic class EventObject
InheritanceEventObject Inheritance Object
Subclasses CalendarEvent

A calendar event representing an entry in the calendar.



Public Properties
 PropertyDefined By
  alarms : Array
[read-only] An array of alarms (CalendarEventAlarm) attached to this event.
EventObject
  allDay : Boolean
Whether the event is "All day" or if it is for the specified time interval
EventObject
  attendees : Array
The list of participants/attendees/people asked to attend this event
EventObject
  calendarId : String
EventObject
  endDate : Date
The end date and time of this event
EventObject
  endDateString : String
Returns the ISO 8601 string representation of the start time
EventObject
  endTimestamp : Number
EventObject
  id : String
A unique ID for this event - only populated in certain return cases
EventObject
  location : String
A description of the location of this event.
EventObject
  notes : String
A small notation or description attached to an event.
EventObject
  recurrenceRules : Array
[read-only]
EventObject
  startDate : Date
The start date and time of this event
EventObject
  startDateString : String
Returns the ISO 8601 string representation of the start time
EventObject
  startTimestamp : Number
EventObject
  title : String
A string describing the event.
EventObject
  url : String
A URL associated with this event.
EventObject
Public Methods
 MethodDefined By
  
Constructor
EventObject
Property Detail
alarmsproperty
alarms:Array  [read-only]

An array of alarms (CalendarEventAlarm) attached to this event.


Implementation
    public function get alarms():Array

See also

CalendarEventAlarm
allDayproperty 
allDay:Boolean

Whether the event is "All day" or if it is for the specified time interval


Implementation
    public function get allDay():Boolean
    public function set allDay(value:Boolean):void
attendeesproperty 
public var attendees:Array

The list of participants/attendees/people asked to attend this event

calendarIdproperty 
calendarId:String


Implementation
    public function get calendarId():String
    public function set calendarId(value:String):void
endDateproperty 
endDate:Date

The end date and time of this event


Implementation
    public function get endDate():Date
    public function set endDate(value:Date):void
endDateStringproperty 
endDateString:String

Returns the ISO 8601 string representation of the start time


Implementation
    public function get endDateString():String
    public function set endDateString(value:String):void
endTimestampproperty 
endTimestamp:Number


Implementation
    public function get endTimestamp():Number
    public function set endTimestamp(value:Number):void
idproperty 
id:String

A unique ID for this event - only populated in certain return cases


Implementation
    public function get id():String
    public function set id(value:String):void
locationproperty 
location:String

A description of the location of this event.


Implementation
    public function get location():String
    public function set location(value:String):void
notesproperty 
notes:String

A small notation or description attached to an event. Under iOS this is add as a note on an event. Under Android it is added as the description.


Implementation
    public function get notes():String
    public function set notes(value:String):void
recurrenceRulesproperty 
recurrenceRules:Array  [read-only]


Implementation
    public function get recurrenceRules():Array
startDateproperty 
startDate:Date

The start date and time of this event


Implementation
    public function get startDate():Date
    public function set startDate(value:Date):void
startDateStringproperty 
startDateString:String

Returns the ISO 8601 string representation of the start time


Implementation
    public function get startDateString():String
    public function set startDateString(value:String):void
startTimestampproperty 
startTimestamp:Number


Implementation
    public function get startTimestamp():Number
    public function set startTimestamp(value:Number):void
titleproperty 
title:String

A string describing the event.


Implementation
    public function get title():String
    public function set title(value:String):void
urlproperty 
url:String

A URL associated with this event. Android currently ignores this value


Implementation
    public function get url():String
    public function set url(value:String):void
Constructor Detail
EventObject()Constructor
public function EventObject()

Constructor