Personal Address - the person will use the contact's address unless the UseAsMailingAddress flag is also set.
Returns the contact person’s address object
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOAddress Address { get; }
ReadOnly Property Address As SOAddress
Get
Dim instance As IPerson
Dim value As SOAddress
value = instance.Address
property SOAddress^ Address {
SOAddress^ get ();
}
Property Value
Type:
SOAddressSOAddress – a reference to the SOAddress object
ExamplesAddress
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = Nothing
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox objSO.CurrentPerson.Address.FormattedAddress
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also