ActiveReports 19 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.Document Namespace / SectionDocument Class / Name Property
Example

In This Topic
    Name Property (SectionDocument)
    In This Topic
    Gets or sets a value indicating the document name.
    Syntax
    'Declaration
     
    Public Overrides Property Name As String
    public override string Name {get; set;}

    Property Value

    A System.String value that representing the value of the document name.
    Remarks
    We utilize this property to send the document name to the printer. Default value is "ActiveReports Document".
    Example
    var sectionReport = new GrapeCity.ActiveReports.SectionReport();
    sectionReport.Document.Name = "Name";
    See Also