forked from Aeraphe/excel-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdictionary.d.vb
109 lines (80 loc) · 1.24 KB
/
dictionary.d.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
'/*
'
'
'
'/*
Public Class Scripting()
'/*
'
'Object that stores data key/item pairs.
'
'/*
Public Function Dictionary()
End Function
'/*
'
'Adds a new key/item pair to a Dictionary object.
'
'*/
Public Sub Add()
End Sub
'/*
'
'Returns a Boolean value that indicates whether a specified key exists in the Dictionary object.
'
'*/
Public Sub Exists()
End Sub
'/*
'
'Returns an array of all the items in a Dictionary object.
'
'*/
Public Sub Items()
End Sub
'/*
'
'Returns an array of all the keys in a Dictionary object.
'
'*/
Public Sub Keys()
End Sub
'/*
'
'Removes one specified key/item pair from the Dictionary object.
'
'*/
Public Sub Remove()
End Sub
'/*
'
'Removes all the key/item pairs in the Dictionary object.
'
'*/
Public Sub RemoveAll()
End Sub
'/*
'Sets or returns the comparison mode for comparing keys in a Dictionary object.
'
'
'*/
Public Property CompareMode As Variant
'/*
'Returns the number of key/item pairs in a Dictionary object.
'
'
'*/
Public Property Count As Long
'/*
'Sets or returns the value of an item in a Dictionary object.
'
'
'*/
Public Property Item As Variant
'/*
'Sets a new key value for an existing key value in a Dictionary object.
'
'
'*/
Public Property Key As Variant
End Class