Click or drag to resize

IAppointmentGetNoOfParticipants Method

Number of participants for this booking.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
int GetNoOfParticipants()

Return Value

Type: Int32
Long - Number of participants
Examples

GetNoOfParticipants

VB
dim db
dim assoclist, assoc, appnt
Set db = CreateObject("SuperOfficedb.Database")
if db.login("<username>","<password>") then    
    set appnt = db.GetAppointment(442)
    msgbox "Number of participants: " & appnt.GetNoOfParcipiants()
else
    MsgBox "Could not log on"
end if
Set objSO = Nothing

See Also