DictionaryName property
The DictionaryName property sets or gets the name of a dictionary in the Setup DCO.
VBScript only: Because extended
properties are not supported through the C# .NET Interop interface,
you must instead use the set_DictionaryName method or the get_DictionaryName method.
Syntax
- VBScript
oSO.DictionaryName(DictIndex as Long) as String
Arguments
- DictIndex
- The number that indicates the location of the dictionary in the setup DCO, with 0 being the first dictionary, 1 being the second, and so on.
Type
Read and write.VBScript example
This example sets the name of the first dictionary in the setup DCO file to Vendors and the name of the second dictionary to Customers.oSO.DictionaryName(0) = "Vendors"
oSO.DictionaryName(1) = "Customers"