ActiveReports Developer 7
ToString Method
See Also  Example
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports.Document.Section Namespace > Page Class : ToString Method

Glossary Item Box

Renders the page's settings and content to a string.

Syntax

Visual Basic (Declaration) 
Public Overrides Function ToString() As System.String
C# 
public override System.string ToString()

Example

C#Copy Code
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());
}
Visual BasicCopy Code
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