User data can be added to each group in a key value pair. This will add in a new key value pair.
Syntax
'Declaration
Public Sub UserDataAdd( _
ByVal As String, _
ByVal As String _
)
'Usage
Dim instance As Group
Dim key As String
Dim newVal As String
instance.UserDataAdd(key, newVal)
Parameters
- key
- A string value which represents the new key.
- newVal
- A string value which represents the new value.
See Also