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

Name Property (SectionDocument)
Gets or sets a value indicating the document name.
Syntax
'Declaration
 
Public Overrides Property Name As String
 

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