ISProvider.SpecialtyDescription

Description

The textual description for the specialty of the provider.

Syntax

object.SpecialtyDescription

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 specialty 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 &_
  "Full Name:" & vbTab & "Specialty Description:"
for each aProvider in aProviders 
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.SpecialtyDescription
next

Profile.MsgBox (aMessage)  
Note:

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

Version information

Added in v7.8.0