Status Property
Defines the overall status or confirmation for the calendar event.
Syntax
[VB.NET] Public Property Status As String
[C#] public string Status {get; set;}
Remarks
In a group-scheduled calendar component, the property is used by the Organizer to provide a confirmation of the event to the Attendees. For example in a vEvent EventType the Organizer can indicate that a meeting is tentative, confirmed, or canceled. For a vTodo EventType, the Organizer can indicate that an action item needs action, is completed, is in process or being worked on, or has been canceled. In a vJournal EventType, the Organizer can indicate that a journal entry is draft, final, or has been canceled or removed.
Statuses for a vEvent EventType:
TENTATIVE | Indicates event is tentative. |
CONFIRMED | Indicates event is definite. |
CANCELLED | Indicates event was canceled. |
NEEDS-ACTION | Indicates to-do needs action. |
COMPLETED | Indicates to-do completed. |
IN-PROCESS | Indicates to-do in process of. |
CANCELLED | Indicates to-do was canceled. |
DRAFT | Indicates event is draft. |
FINAL | Indicates event is final. |
CANCELLED | Indicates event is removed. |
This property is filled from the response to a GetCalendarEvent, and is also used when creating an event to be added using the PutCalendarEvent method. However, when requesting a report using the GetCalendarReport method, the contents of this property will only be valid inside the EventDetails event.
Default Value
""