ISProfile.Concept

Description

This function returns the concept by its termset and concept codes.

Syntax

object.Concept(aTermsetCode, aConceptCode)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aTermsetCode In, Required
string
The termset code of the concept
aConceptCode In, Required
string
The concept code of the concept

Return Value

ISConcept

Returns the concept by its termset and concept codes.

Example

Display the name of the 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 Concept can be found in Maintain > Termset Maintenance.

Version information

Added in v7.8.0