ISConcept.Name

Description

The name of the concept.

Syntax

object.Name

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

Return Value

string

Example

Display the name of the selected concept.

Dim aConcept
Dim aTermsetCode  
Dim aConceptCode

aTermsetCode = "IH"
aConceptCode = "z..2T" 
Set aConcept = Profile.Concept(aTermsetCode, aConceptCode)

if aConcept is nothing then 
  Profile.MsgBox("There is no concept with specified codes.") 
else 
  Profile.MsgBox("The name of the concept is " & aConcept.Name)
end if   
Note:

In Profile Client v8 on User Interface Name can be found in Maintain > Termset Maintenance > Details of Concept > Name or in Special > Terms > Details of Concept > Name.

Version information

Added in v7.8.0