ISExternalProvider.Title

Description

The title of the external provider.

Syntax

object.Title

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

Return Value

string

Example

Display the title 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:" & vbTab & "Title:" & vbNewLine & vbNewLine &_
    aExtProvider.FullName & vbTab & aExtProvider.Title
end if
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Title can be found in Organisation > External Providers > Basic > General > Title field.

Version information

Added in v7.8.0