ISExternalProvider.IsStreetPostal

Description

Returns True if the external provider's street address is also used as the postal address.

Syntax

object.IsStreetPostal

Part Attribute Type Description
object Required
The object always implements the ISExternalProvider interface

Return Value

bool

Example

Display IsStreetPostal for the external provider.

Dim aExtProvider 
Dim aCode
Dim aMessage

aCode = "1"
Set aExtProvider = Profile.LoadExternalProvider(aCode)

if aExtProvider.ID = 0  then 
  Profile.MsgBox("No external provider with the specified code")
  exit sub   
end if

aMessage = aMessage & "FULL NAME:" & vbNewLine & aExtProvider.FullName &_
  vbNewLine & vbNewLine & "Is Street Postal:" & vbNewLine &_
  aExtProvider.IsStreetPostal
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface the Use Street checkbox can be checked in Organisation > External Providers > Basic > General.

Version information

Added in v7.8.0
Access changed to read/write in v7.8.0