Package | com.distriqt.extension.calendar.objects |
Class | public class EventObject |
Inheritance | EventObject Object |
Subclasses | CalendarEvent |
A calendar event representing an entry in the calendar.
Property | Defined 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 |
Method | Defined By | ||
---|---|---|---|
Constructor
| EventObject |
alarms | property |
alarms:Array
[read-only] An array of alarms (CalendarEventAlarm) attached to this event.
public function get alarms():Array
See also
allDay | property |
allDay:Boolean
Whether the event is "All day" or if it is for the specified time interval
public function get allDay():Boolean
public function set allDay(value:Boolean):void
attendees | property |
public var attendees:Array
The list of participants/attendees/people asked to attend this event
calendarId | property |
calendarId:String
public function get calendarId():String
public function set calendarId(value:String):void
endDate | property |
endDate:Date
The end date and time of this event
public function get endDate():Date
public function set endDate(value:Date):void
endDateString | property |
endDateString:String
Returns the ISO 8601 string representation of the start time
public function get endDateString():String
public function set endDateString(value:String):void
endTimestamp | property |
endTimestamp:Number
public function get endTimestamp():Number
public function set endTimestamp(value:Number):void
id | property |
id:String
A unique ID for this event - only populated in certain return cases
public function get id():String
public function set id(value:String):void
location | property |
location:String
A description of the location of this event.
public function get location():String
public function set location(value:String):void
notes | property |
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.
public function get notes():String
public function set notes(value:String):void
recurrenceRules | property |
recurrenceRules:Array
[read-only]
public function get recurrenceRules():Array
startDate | property |
startDate:Date
The start date and time of this event
public function get startDate():Date
public function set startDate(value:Date):void
startDateString | property |
startDateString:String
Returns the ISO 8601 string representation of the start time
public function get startDateString():String
public function set startDateString(value:String):void
startTimestamp | property |
startTimestamp:Number
public function get startTimestamp():Number
public function set startTimestamp(value:Number):void
title | property |
title:String
A string describing the event.
public function get title():String
public function set title(value:String):void
url | property |
url:String
A URL associated with this event. Android currently ignores this value
public function get url():String
public function set url(value:String):void
EventObject | () | Constructor |
public function EventObject()
Constructor