ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItem Class / Name Property
Example

In This Topic
    Name Property (ReportItem)
    In This Topic
    Gets or sets the name of the report item.
    Syntax
    'Declaration
     
    Public Property Name As String
    public string Name {get; set;}

    Property Value

    A System.String value indicating the name of the report item.
    Example
    var reportItem = new TextBox();
    reportItem.Name = "TitleTextBox";
    string textBoxName = reportItem.Name;
    See Also