GrapeCity.ActiveReports.Document.v8 Assembly > GrapeCity.ActiveReports.Document Namespace > SectionDocument Class : CacheToDiskLocation Property |
'Declaration Public Property CacheToDiskLocation As System.String
public System.string CacheToDiskLocation {get; set;}
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; }
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