IAppointmentInvitedPerson Property |
The person who is invited by the appointment
If the appointment is a booking, the invited persons may be your associates, but you are also able to invite contact persons from other companies to join your meeting. They do not receive an invitation, unless you send them one by email, but you can see in the appointment that persons other than your associates have been invited to a meeting. Each invited person will have an appointment slave record.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOPerson InvitedPerson { get; set; }
Property InvitedPerson As SOPerson
Get
Set
Dim instance As IAppointment
Dim value As SOPerson
value = instance.InvitedPerson
instance.InvitedPerson = value
property SOPerson^ InvitedPerson {
SOPerson^ get ();
void set (SOPerson^ value);
}
Property Value
Type:
SOPersonSOPerson – a reference to the SOPerson object
ExamplesShow invited persons name
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Name of invited person: " & objSO.CurrentAppointment.invitedperson.firstname, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also