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
Syntaxstring FormattedPhone { get; }
ReadOnly Property FormattedPhone As String
Get
Dim instance As IPhone
Dim value As String
value = instance.FormattedPhone
property String^ FormattedPhone {
String^ get ();
}
Property Value
Type:
StringString – the objects phone numbers formatted
ExamplesFormattedPhone
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
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