CalendarEvent
Object Hierarchy:
Description:
All the fields in the CalendarEvent structure are private and should never be accessed directly.
Namespace: GData
Package: libgdata
Content:
Properties:
- public bool anyone_can_add_self { get; set; }
Indicates whether anyone can invite themselves to the event, by adding themselves to the attendee list.
- public int64 edited { get; }
The last time the event was edited.
- public bool guests_can_invite_others { get; set; }
Indicates whether attendees may invite others to the event.
- public bool guests_can_modify { get; set; }
Indicates whether attendees may modify the original event, so that changes are visible to organizers and other attendees.
- public bool guests_can_see_guests { get; set; }
Indicates whether attendees can see other people invited to the event.
- public string original_event_id { owned get; }
The event ID for the original event, if this event is an exception to a recurring event.
- public string original_event_uri { owned get; }
The event URI for the original event, if this event is an exception to a recurring event.
- public string recurrence { get; set; }
Represents the dates and times when a recurring event takes place.
- public uint sequence { get; set; }
The revision sequence number of the event as defined in Section 4.8.7.4 of RFC 2445.
- public string status { get; set; }
The scheduling status of the event.
- public string transparency { get; set; }
How the event is marked as consuming time on a calendar.
- public string uid { get; set; }
The globally unique identifier (UID) of the event as defined in Section 4.8.4.7 of RFC 2445.
- public string visibility { get; set; }
The event's visibility to calendar users.
Creation methods:
- public CalendarEvent (string? id)
Creates a new CalendarEvent with the given ID and default properties.
Methods:
- public void add_person (GDWho who)
Adds the person
who
to the event as a guest (attendee, organiser, performer, etc. - public void add_place (GDWhere where)
Adds the place
where
to the event as a location and increments its reference count. - public void add_time (GDWhen when)
Adds
when
to the event as a time period when the event happens, and increments its reference count. - public bool get_anyone_can_add_self ()
Gets the anyone_can_add_self property.
- public int64 get_edited ()
Gets the edited property.
- public bool get_guests_can_invite_others ()
Gets the guests_can_invite_others property.
- public bool get_guests_can_modify ()
Gets the guests_can_modify property.
- public bool get_guests_can_see_guests ()
Gets the guests_can_see_guests property.
- public void get_original_event_details (out string event_id, out string event_uri)
Gets details of the original event, if this event is an exception to a recurring event.
- public unowned List<GDWho> get_people ()
Gets a list of the people attending the event.
- public unowned List<GDWhere> get_places ()
Gets a list of the locations associated with the event.
- public bool get_primary_time (out int64 start_time, out int64 end_time, out unowned GDWhen when)
Gets the first time period associated with the event, conveniently returning just its start and end times if required.
- public unowned string get_recurrence ()
Gets the recurrence property.
- public uint get_sequence ()
Gets the sequence property.
- public unowned string get_status ()
Gets the status property.
- public unowned List<GDWhen> get_times ()
Gets a list of the time periods associated with the event.
- public unowned string get_transparency ()
Gets the transparency property.
- public unowned string get_uid ()
Gets the uid property.
- public unowned string get_visibility ()
Gets the visibility property.
- public bool is_exception ()
Determines whether the event is an exception to a recurring event.
- public void set_anyone_can_add_self (bool anyone_can_add_self)
Sets the anyone_can_add_self property to
anyone_can_add_self
. - public void set_guests_can_invite_others (bool guests_can_invite_others)
Sets the guests_can_invite_others property to
guests_can_invite_others
. - public void set_guests_can_modify (bool guests_can_modify)
Sets the guests_can_modify property to
guests_can_modify
. - public void set_guests_can_see_guests (bool guests_can_see_guests)
Sets the guests_can_see_guests property to
guests_can_see_guests
. - public void set_recurrence (string? recurrence)
Sets the recurrence property to the new recurrence,
recurrence
. - public void set_sequence (uint sequence)
Sets the sequence property to the new sequence number,
sequence
. - public void set_status (string? status)
Sets the status property to the new status,
status
. - public void set_transparency (string? transparency)
Sets the transparency property to the new transparency,
transparency
. - public void set_uid (string? uid)
Sets the uid property to the new UID,
uid
. - public void set_visibility (string? visibility)
Sets the visibility property to the new visibility,
visibility
.
Inherited Members:
All known members inherited from class GData.Entry
All known members inherited from class GData.Parsable
All known members inherited from class GLib.Object