Search
Table.UserData Property
See Also
 



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

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
int get_UserData ()
void put_UserData (
    int value
)

 Property Value

A long value. The default is 0.

 Remarks

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

 See Also