Returns True if the selected correspondence method for the external provider is 'Fax'.
object.CorrespondenceMethodFax
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISExternalProvider interface |
bool
Display CorrespondenceMethodFax for the external provider.
Dim aExtProvider
Dim aCode
Dim aMessage
aCode = "JT"
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 & "CORRESPONDENCE METHOD 'Fax':" & vbNewLine &_
aExtProvider.CorrespondenceMethodFax
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface the Fax checkbox can be checked in
.