Click or drag to resize

IPhoneFormattedPhone Property

The Number formatted with international dialing prefix added or removed, as apporopriate. For example, if we here in SuperOffice ASA run this on our SuperOffice subsidiary in United Kingdom contact card, this will return 00 (international prefix from Norway) + 44 (United Kingdoms Country code) + phone number

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

Property Value

Type: String
String – the objects phone numbers formatted
Examples

FormattedPhone

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 "Current contact first phone number, formatted phone: " & objSO.Currentcontact.Phones.Item(1).formattedphone, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also