MonoReports.Core.ReportRenderer.RenderControl C# (CSharp) Method

RenderControl() public method

public RenderControl ( Control control ) : void
control MonoReports.Model.Controls.Control
return void
        public void RenderControl(Control control )
        {
            Type controlType = control.GetType();
            if(renderersDictionary.ContainsKey(controlType)){
                var renderer = renderersDictionary[controlType] as IControlRenderer;
                renderer.Render(context,control);
            }
        }