Search
Table.Tag Property
See Also
 



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

 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

Holds user-defined data and is not used by FlowChartX in any way. Possible usage includes storing some integer identifier or a pointer to a larger structure.

 See Also