ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ARControl Class / Tag Property
Example

In This Topic
    Tag Property (ARControl)
    In This Topic
    Gets or sets user-defined information to be persisted with the control.
    Syntax
    'Declaration
     
    Public Property Tag As Object
    public object Tag {get; set;}
    Example
    GrapeCity.ActiveReports.SectionReportModel.ARControl arcontrol = new GrapeCity.ActiveReports.SectionReportModel.ARControl();
    arcontrol.Tag = new TextBox();
    Dim arcontrol As New GrapeCity.ActiveReports.SectionReportModel.ARControl()
    arcontrol.Tag = New TextBox()
    See Also