Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
Option Explicit
|
||||
|
||||
Private mKey As String
|
||||
Private mValue As Variant
|
||||
|
||||
Public Property Get Value() As Variant
|
||||
Value = mValue
|
||||
End Property
|
||||
Public Property Let Value(iValue As Variant)
|
||||
mValue = iValue
|
||||
End Property
|
||||
Public Property Get Key() As Variant
|
||||
Key = mKey
|
||||
End Property
|
||||
Private Property Let Key(iKey As Variant)
|
||||
mKey = iKey
|
||||
End Property
|
||||
|
||||
Public Sub Add(K As String, V As Variant)
|
||||
Value = V
|
||||
Key = K
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue