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

In This Topic
    DataElementName Property (ReportSection)
    In This Topic
    Gets or sets a name of the top-level XML element that represents the report data.
    Syntax
    'Declaration
     
    Public Property DataElementName As String
    public string DataElementName {get; set;}

    Property Value

    A System.String value indicating the name of the top-level XML element for the report data.
    Example
    ReportSection section = new ReportSection();
    section.DataElementName = "ReportSection";
    See Also