Description: | Marks the member as attending or not. |
Syntax: | object.SetAttending(bAttending, sReason) |
Parameters: | |
object | Required, the Meeting Member object |
bAttending | True if the member plans to attend the meeting, False otherwise. |
sReason | The reason for not attending |
Remarks: | This method marks the member as planning to attend the meeting or not depending upon the value of bAttending. If bAttending is False then you may optionally supply a reason. |
Returns: | Nothing |
Example: |
Dim meetings As Object
Set session = CreateObject("OfficeTalk.Session")
Set user = session.Logon(login name, password)
Set meetings = session.GetMeetings
Set meeting = meetings.GetFirst
Set members = meeting.GetMembers
Set member = members.GetFirst
Call member.SetAttending(False, "I will be away")