IAppointmentGetNoOfParticipants Method |
Number of participants for this booking.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxint GetNoOfParticipants()
Function GetNoOfParticipants As Integer
Dim instance As IAppointment
Dim returnValue As Integer
returnValue = instance.GetNoOfParticipants()
int GetNoOfParticipants()
Return Value
Type:
Int32Long - Number of participants
ExamplesGetNoOfParticipants
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