ISConcept.ID

Description

ID of the concept.

Syntax

object.ID

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

Return Value

int

Example

Display the name and ID 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("ID of the concept with the name " & aConcept.Name & " is " &_ 
    aConcept.ID)
end if 
Note:

In Profile Client v8 on User Interface ID cannot be found, but Concept can be found in Maintain > Termset Maintenance or in Special > Terms.

Version information

Added in v7.8.0