ActiveReports Developer 7
CacheToDiskLocation Property
See Also  Example
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports.Document Namespace > SectionDocument Class : CacheToDiskLocation Property

Glossary Item Box

Gets or set the location of CacheToDisk files. The location can be a physical path or IsolateStorage.

Syntax

Visual Basic (Declaration) 
Public Property CacheToDiskLocation As System.String
C# 
public System.string CacheToDiskLocation {get; set;}

Remarks

Temporary files and folders created in IsolatedStorage are not deleted automatically.

Example

C#Copy Code
private void viewer1_Load(object sender, System.EventArgs e) 
{ 
    rptDocument rpt = new rptDocument(); 
    rpt.Document.CacheToDisk = true;
    rpt.Document.CacheToDiskLocation = "C:\\Temp"; 
    rpt.Run(); 
    viewer1.Document=rpt.Document; 
}
Visual BasicCopy Code
Private Sub viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDocument
    rpt.Document.CacheToDisk = True
    rpt.Document.CacheToDiskLocation = "C:\\Temp
    rpt.Run()
    viewer1.Document = rpt.Document
End Sub

See Also