Location:
caluser.h
Link against: calinterimapi.lib
class CCalAttendee : public CCalUser;
Description
Class representing an attendee of an event.
CCalAttendee is a specialization of the CCalUser
class.
This class contains extra methods to store and retrieve an Attendee's ROLE, PART-STAT, and RSVP fields.
Derivation
CBase
- Base class for all classes to be instantiated on the heap
CCalUser
- Class representing a calendar user
CCalAttendee
- Class representing an attendee of an event
Members
Defined in CCalAttendee
:
EAccepted
, EChair
, ECompleted
, EConfirmed
, EDeclined
, EDelegated
, EInProcess
, ENeedsAction
, ENonParticipant
, EOptParticipant
, EReqParticipant
, ETentative
, NewL()
, NewL()
, ResponseRequested()
, RoleL()
, SetResponseRequested()
, SetRoleL()
, SetStatusL()
, StatusL()
, TCalRole
, TCalStatus
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CCalUser
:
Address()
,
CommonName()
,
SentBy()
,
SetCommonNameL()
,
iImpl
static IMPORT_C CCalAttendee *NewL(const TDesC &aAddress);
Description
Allocates and constructs a new attendee with the specified email address.
Parameters
const TDesC &aAddress |
The address of the attendee.
|
|
Return value
static IMPORT_C CCalAttendee *NewL(const TDesC &aAddress, const TDesC &aSentBy);
Description
Allocates and constructs a new attendee with the specified email address and sender.
Parameters
const TDesC &aAddress |
The address of the attendee.
|
const TDesC &aSentBy |
|
|
Return value
IMPORT_C void SetRoleL(TCalRole aRole);
Description
Set the role of this attendee.
Parameters
IMPORT_C void SetStatusL(TCalStatus aStatus);
Description
Set the status of this attendee.
Parameters
IMPORT_C void SetResponseRequested(TBool aRsvp);
Description
Sets whether or not a response was requested for this attendee.
Parameters
TBool aRsvp |
ETrue if a response was requested, EFalse if not.
|
|
IMPORT_C TCalRole RoleL() const;
Description
Get the role of this attendee.
Return value
IMPORT_C TCalStatus StatusL() const;
Description
Get the status of this attendee.
Return value
IMPORT_C TBool ResponseRequested() const;
Description
Gets whether or not a response was requested for this attendee.
Return value
TBool
|
ETrue if a response was requested, EFalse if not.
|
|