ISConcept.Code

Description

The code of the concept.

Syntax

object.Code

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 and code 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 the specified codes.") 
else 
  Profile.MsgBox("The code of the concept with the name " & aConcept.Name & " is " &_ 
    aConcept.Code)
end if
Note:

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

Version information

Added in v7.8.0