Search
Box.Tag Property
See Also
 



Gets or sets a custom integer value associated with this box.

 Syntax

VB6  Copy Code

Public Property Get Tag() As Long
Public Property Let Tag( _
    ByVal value As Long _
)

C++  Copy Code

public:
int get_Tag ()
void put_Tag (
    int value
)

 Property Value

A long value. The default is 0.

 Remarks

Contains user-defined integer data. Possible usage includes storing an integer identifier or a pointer to a larger structure.

 See Also