Location:
vprop.h
Link against: versit.lib
CParserPropertyValueTimeZone
Supported from 5.0
A property value which represents the time zone information for a vCard or vCalendar. The time zone is specified as the universal time offset — a time interval which is a positive or negative number of seconds from universal time. Time zones east of universal time are positive numbers. Time zones west of universal time are negative numbers.
To find out the property value type, use Uid()
defined
in the base class CParserPropertyValue
. A time zone property UID
has the value KVersitPropertyTimeZoneUid
.
The class defines an ExternalizeL()
function which has
not been documented. It is invoked by the parser's ExternalizeL()
function.
|
Defined in CParserPropertyValueTimeZone
:
CParserPropertyValueTimeZone()
, Value()
, ~CParserPropertyValueTimeZone()
Inherited from CBase
:
operator new()
Inherited from CParserPropertyValue
:
EncodeL()
,
ExternalizeL()
,
IsAsciiCharacterSetSufficient()
,
SupportsInterface()
,
Uid()
CParserPropertyValueTimeZone(TTimeIntervalSeconds* aValue);
Constructs a new CParserPropertyValueTimeZone
with
a time interval in seconds, which represents the universal time offset. Sets
the property value’s UID to
KVersitPropertyTimeZoneUid
.
|
~CParserPropertyValueTimeZone();
Frees all resources owned by the property value, prior to its destruction.
TTimeIntervalSeconds* Value() const;
Gets the time zone property value.
|