[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.PageStart

PageStart Event

Occurs at the beginning of page processing.

Namespace: GrapeCity.ActiveReports
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event EventHandler PageStart
Returns
Type Description
EventHandler Occurs at the beginning of page processing.
Examples
int i = 0;
report.PageStart += (sender, e) =>
	i = 0;
report.FetchData += (sender, e) =>
	e.EOF = i++ > 3;
report.PageEnd += (sender, e) =>
	i = 0;