The textual description for the type of the external provider.
object.TypeDescription
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISExternalProvider interface |
string
Display the textual description for the type of the external provider.
Dim aExtProvider
Dim aCode
Dim aMessage
aCode = "JT"
Set aExtProvider = Profile.LoadExternalProvider(aCode)
if aExtProvider.ID = 0 then
aMessage = "No external provider with the specified code"
else
aMessage = aMessage & vbNewLine &_
"FULL NAME: " & aExtProvider.FullName & vbNewLine &_
"TYPE DESCRIPTION: " & aExtProvider.TypeDescription
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Type Description can be found in
.