AddParticipant (NotesUIScheduler - LotusScript®)

Adds a participant to an embedded scheduler.

Defined in

NotesUIScheduler

Syntax

Call notesUIScheduler .AddParticipant( name$ , role& , status& [, type&] [, alternateName$] [, inetName$] [, storageType$] [, flags&] )

Parameters

name$

String. The name of the participant.

role&

Long. Constant. Role of the participant. One of the following:

  • PARTICIPANTROLE_CHAIR (3)
  • PARTICIPANTROLE_DELEGEE (12)
  • PARTICIPANTROLE_FYIATT (10)
  • PARTICIPANTROLE_MAILINDB (60)
  • PARTICIPANTROLE_OPTATT (9)
  • PARTICIPANTROLE_REMOVED (99)
  • PARTICIPANTROLE_REQATT (6)
  • PARTICIPANTROLE_RESOURCE (18)
  • PARTICIPANTROLE_ROOM (15)

status&

Long. Constant. Status of the participant. One of the following:

  • PARTICIPANTSTATUS_ACCEPT (6)
  • PARTICIPANTSTATUS_COMPLETE (3)
  • PARTICIPANTSTATUS_COUNTER (12)
  • PARTICIPANTSTATUS_DECLINE (9)
  • PARTICIPANTSTATUS_DELEGATE (15)
  • PARTICIPANTSTATUS_PENCILIN (7)
  • PARTICIPANTSTATUS_REMOVED (24)
  • PARTICIPANTSTATUS_WAITING (18)

type&

Long. Constant. Status of the participant. One of the following:

  • PARTICIPANTTYPE_PERSON (0)
  • PARTICIPANTTYPE_RESOURCE (54)
  • PARTICIPANTTYPE_ROOM (53)

alternateName$

String. Optional. The alternate name of the participant.

inetName$

String. Optional. The Internet name of the participant.

storageType$

String. Optional.

flags&

String. Optional. None.

Usage

AddParticipant adds the name of the participant to the document without any scheduling information. Use GetScheduleData to add the participant's scheduling information.

Participants are added as specified. The specified names are not checked against a Domino® Directory.

Example