The plural form of the translated word from the dictionary entry.
object.PluralTransl
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISDictionaryEntry interface |
string
Display the name of the dictionary and the short information about its entries, including the plural forms of the translated words.
Dim aDictionary
Dim aAllEntries, aEntry
Dim aDictInfo
Dim i
Set aDictionary = Profile.GetDictionary("Legal")
set aAllEntries = aDictionary.AllEntries
aDictInfo = _
"Dictionary name: " & aDictionary.Name & vbNewLine & _
"Entry Count: " & aAllEntries.Count & vbNewLine & vbNewLine & _
"Transl.Sing. Transl.Plur. Abbr.Transl.Sing. Abbr.Transl.Plur."
for i = 0 to aAllEntries.Count - 1
set aEntry = aAllEntries.Item(i)
aDictInfo = aDictInfo & vbNewLine &_
aEntry.SingleTransl & " " &_
aEntry.PluralTransl & " " & aEntry.AbbrSingleTransl &_
" " & aEntry.AbbrPluralTransl
next
Profile.MsgBox(aDictInfo)
In Profile Client v8 on User Interface the Dictionary entries can be found in
.