Click or drag to resize

IPersonTitle Property

Job description The Contact person dialog has a title field that may be used to register the person’s professional title.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Title { get; set; }

Property Value

Type: String
String – the text registered on the person dialog title field
Examples

Title

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "The current person title " & objSO.CurrentPerson.Title, vbInformation + vbOkOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also