IPersonCorrespondingAssociate Property |
IAssociate object if the Person is an associate, else empty Associate object (id=0)
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOAssociate CorrespondingAssociate { get; }
ReadOnly Property CorrespondingAssociate As SOAssociate
Get
Dim instance As IPerson
Dim value As SOAssociate
value = instance.CorrespondingAssociate
property SOAssociate^ CorrespondingAssociate {
SOAssociate^ get ();
}
Property Value
Type:
SOAssociate
ExamplesCorresponding associate
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current person Corresponding Associate: " & objSO.CurrentPerson.CorrespondingAssociate.FullName, vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also