ActiveReports 6 Online Help
ToString Method (Page)
Example 

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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Page Class
Page Members
Base Implementation in ToString

Send Feedback