ISConcept.NamePlural

Description

The plural form of the concept name.

Syntax

object.NamePlural

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 and its plural form.

Dim aConcept
Dim aTermsetCode  
Dim aConceptCode

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

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

In Profile Client v8 on User Interface Plural form can be found in Maintain > Termset Maintenance > Details of Concept/Plural Form or in Special > Terms > Details of ConceptPlural Form.

Version information

Added in v7.8.0