IJournalStart Property
IT Hit WebDAV Classes Reference
Gets or sets the inclusive start of the event. For recurring events or to-do, it also specifies the very first instance in the recurrence set. The time could be "floating" time, time related to time zone, or time in UTC.
Namespace:
ITHit.Collab.Calendar
Assembly:
ITHit.Collab (in ITHit.Collab.dll) Version: 1.0.0.540 (1.0.0.540)
SyntaxICalDate Start { get; set; }
ICalDate Start { get; set; }
Property Start As ICalDate
Get
Set
Property Start As ICalDate
Get
Set
property ICalDate^ Start {
ICalDate^ get ();
void set (ICalDate^ value);
}
property ICalDate^ Start {
ICalDate^ get ();
void set (ICalDate^ value);
}
abstract Start : ICalDate with get, set
abstract Start : ICalDate with get, set
Property Value
Type:
ICalDateICalDate or
null if property is not present. Use
CreateCalDateProp(NullableDateTime, String, Boolean) or
CreatePropertyT to create a new property and assign value. Set value to
null to remove the property.
RemarksThis property can contain "floating" time (without time zone), time related to time zone specified in TimeZoneId, or time in UTC.
In case the time is "floating", the Kind is set to Local. The TimeZoneId is always null in this case.
In case the time in time zone specified by TimeZoneId, the Kind is set to Unspecified.
In case the time is in UTC, the Kind is set to Utc.
This property can contain either date and time or date only for all-day events. To find out if time is specified check the Time flag of the Components property.
See Also