Location:
vprop.h
Link against: versit.lib
CParserPropertyValueDate
Supported from 5.0
A date property value. The date value is contained in a
TVersitDateTime
object. The Year()
,
Month()
and Day()
member functions of class
TDateTime
may be used to extract the date components from
TVersitDateTime::iDateTime
.
To find out the property value type, use Uid()
defined
in the base class CParserPropertyValue
. A date property UID has
the value KVersitPropertyDateUid
.
|
Defined in CParserPropertyValueDate
:
CParserPropertyValueDate()
, ConvertAllDateTimesToUTCL()
, ConvertAllUTCDateTimesToMachineLocalL()
, Value()
, ~CParserPropertyValueDate()
Inherited from CBase
:
operator new()
Inherited from CParserPropertyValue
:
EncodeL()
,
ExternalizeL()
,
IsAsciiCharacterSetSufficient()
,
Uid()
Inherited from CParserTimePropertyValue
:
SupportsInterface()
CParserPropertyValueDate(TVersitDateTime* aValue);
Constructs a CParserPropertyValueDate
with a
TVersitDateTime
value. Sets the property value’s UID to
KVersitPropertyDateUid
.
|
~CParserPropertyValueDate();
Frees all resources owned by the property, prior to its destruction.
void ConvertAllDateTimesToUTCL(const TTimeIntervalSeconds& aIncrement,const CVersitDaylight* aDaylight);
This function is inherited from the base class
CParserTimePropertyValue
. It has an empty implementation because
this class represents a date not a time value.
void ConvertAllUTCDateTimesToMachineLocalL(const TTimeIntervalSeconds& aIncrement);
This function is inherited from the base class
CParserTimePropertyValue
. It has an empty implementation because
this class represents a date not a time value.
TVersitDateTime* Value() const;
Gets a pointer to the date value.
|