IAppointmentAcceptInvitation Method |
Accept or reject this invitation: 0 = Reject, 1 = Accept.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxvoid AcceptInvitation(
EnResponse newVal
)
Sub AcceptInvitation (
newVal As EnResponse
)
Dim instance As IAppointment
Dim newVal As EnResponse
instance.AcceptInvitation(newVal)
void AcceptInvitation(
[InAttribute] EnResponse newVal
)
Parameters
- newVal
- Type: SuperOffice.COM.SuperOfficeDBEnResponse
ExamplesAcceptInvitation
Dim db As New Database
If db.Login("<username>", "<password>") Then
Dim app As SOAppointment = db.GetAppointment(3)
app.AcceptInvitation(EnResponse.enResponseAccept)
Else
MsgBox("could not log on")
End If
See Also