Just like normal objects Dictionary object also has definite properties. These properties can be set to any valid value & can be retrieved as and while required.
Property
|
Description
|
CompareMode Property
|
The comparison mode for the string keys.
|
Count Property
|
The number of items in any Dictionary objects.
|
Item Property
|
An item for any key.
|
Key Property
|
A key Syntax: VBScript Dictionary Object
Scripting. Dictionary
|
CompareMode Property
Sets & returns the comparison mode for comparing string keys in Dictionary object.
Syntax: object.CompareMode[ = compare]
The Compare Mode property contains the given parts:
Part
|
Description
|
Object
|
Required. Always the name of Dictionary objects.
|
Compare
|
Optional. If provided, compare is value representing the comparison mode utilized by functions such as StrComp.
|
The compare argument has the given settings:
Constant
|
Value
|
Description
|
VbBinaryCompare
|
0
|
Perform binary comparison.
|
vbTextCompare
|
1
|
Perform textual comparison.
|