public void RenderPage(Page p) { }
internal void FireOnBeforePageRender(ReportContext rc, Page p) { if (OnBeforePageRender != null) { OnBeforePageRender (rc, p); } }
public void RenderPage(Page p) { List<Control> controls = new List<Control>(); for (int i = 0; i < p.Controls.Count; i++) { var control = p.Controls[i]; if(control.IsVisible) { if(control is Section) RenderControl (control); else controls.Add(control); } } for (int i = 0; i < controls.Count; i++) { RenderControl (controls[i]); } }
public void RenderPage(Page p) { for (int i = 0; i < p.Controls.Count; i++) { var control = p.Controls[i]; if(control.IsVisible) RenderControl (control); } }