This function returns the concept by its termset and concept codes.
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 |
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
In Profile Client v8 on User Interface Concept can be found in
.