ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / Page Class / ToString Method
Example

In This Topic
    ToString Method (Page)
    In This Topic
    Renders the page's settings and content to a string.
    Syntax
    'Declaration
     
    Public Overrides Function ToString() As String
    public override string ToString()
    Example
    private void arv_Load(object sender, System.EventArgs e)
    {
        rptDD rpt = new rptDD();
        rpt.Run();
        arv.Document = rpt.Document;
    
        Console.WriteLine(arv.Document.Pages[0].ToString());
    }
    Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
        Dim rpt As New rptDD
        rpt.Run()
        arv.Document = rpt.Document
    
        Console.WriteLine(arv.Document.Pages(0).ToString())
    End Sub
    See Also