ISProvider.TypeDescription

Description

The textual description for the type of the provider.

Syntax

object.TypeDescription

Part Attribute Type Description
object Required
The object always implements the ISProvider interface
Restriction: This property is readonly.

Return Value

string

Example

Display the textual description for the type of the provider.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter

aFilter.Category = 2 'pcProvider  

set aProviders = Profile.LoadProvidersByFilter(aFilter)
aMessage = aMessage & vbNewLine &_
  "The number of the providers is " & aProviders.Count

aMessage = aMessage & vbNewLine &_
  "FullName:" & vbTab & "Type Description:"
for each aProvider in aProviders 
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.TypeDescription
next

Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface Type can be found in Organisation > People&Places > People and Places > Open the selected Provider > General > Type field.

Version information

Added in v7.8.0