MonoReports.Core.ReportRenderer.RenderControl C# (CSharp) Méthode

RenderControl() public méthode

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