Freigeben über


Add Method (IAttendees)

Topic Last Modified: 2006-06-13

Adds a new Attendee object to the collection.

Applies To

IAttendees Interface

Type Library

Microsoft CDO for Exchange 2000 Library

DLL Implemented In

CDOEX.DLL

Syntax

Sub Add(    [Address As String]) As CDO.Attendee
HRESULT Add
(
        BSTR Address,
        IAttendee** pVal
);

Parameters

  • Address
    The optional SMTP address of the attendee being added.

Return Value

Returns S_OK if successful, or an error value otherwise.

Remarks

By specifying the SMTP address of the attendee in the Add method, you can add an attendee with a single line of code. The attendee is added as a required participant. For example,


iAppt.Attendees.Add("someone@example.com")

is equivalent to:


Set Atnd = iAppt.Attendees.Add
Atnd.Address = "someone@example.com"
Atnd.Role = cdoRequiredParticipant