ActiveReports3 Request technical support
UserData Property
See Also 


Sets or returns a user-defined value.

Syntax

Visual Basic (Declaration) 
Public Property UserData As Object
Visual Basic (Usage)Copy Code
Dim instance As ActiveReport3
Dim value As Object
 
instance.UserData = value
 
value = instance.UserData
C# 
public object UserData {get; set;}

Remarks

Values specified in this property are saved and loaded as part of the report layout.  You can use this property to store information beyond what the report properties offer, much like the Tag property in Visual Basic. This property is only persisted as a string if the RPX is saved or loaded to file.

See Also