Click or drag to resize

ISelectionMemberPhone Property

The preferred phone number (the phone number with rank = 1) for the contact representing the selection member - formatted

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

Property Value

Type: String
String – text representing phone number
Examples

Phone

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

VB
Dim objSO
Dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    set sele = objSO.currentSelection.SelectionMembers.item(1)
    msgbox "First selection member: " & sele.Phone
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also