This property allows the user to keep his/her own information within the constant volume bars.
Visual Basic |
---|
Public Property Tag( _ ByVal tag_name As String _ ) As Variant |
- tag_name
The user-defined value's name.
When setting, the tag_name parameter should keep the key that will be associated with the passed information.
When getting the information from the Tag, one of the previously set keys should be passed as tag_name in order to get the corresponding information.
The user-defined value, represented as Variant
Multiple data can be kept in the Tag property under different keys.
If no user-defined value with this tag_name exists, Empty is returned.
If empty is set to an existing tag_name, it is deleted/unregistered.
If a new value is set to an existing tag_name, the old value is overwritten.