Adf.Web.Panels.ImageRenderer.CanRender C# (CSharp) Method

CanRender() public method

public CanRender ( PanelItemType type ) : bool
type Adf.Core.Panels.PanelItemType
return bool
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Image, PanelItemType.InfoIcon };

            return types.Contains(type);
        }
ImageRenderer