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

In This Topic
    DataElementName Property (ReportItem)
    In This Topic
    Gets or sets the name to use for the data element or attribute for the report item.
    Syntax
    'Declaration
     
    Public Property DataElementName As String
    public string DataElementName {get; set;}

    Property Value

    A System.String value indicating the name to use for the data element or attribute for the report item.
    Remarks
    The default value is the Name of the report item.
    Example
    var reportItem = new TextBox();
    reportItem.DataElementName = "DataElement1";
    See Also