Inheritance: Descriptor
Exemplo n.º 1
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.DropDown);
 }
Exemplo n.º 2
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.RadioButtonList);
 }
Exemplo n.º 3
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.BlankItem);
 }
Exemplo n.º 4
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.FileUpload };

            return types.Contains(type);
        }
Exemplo n.º 5
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Calendar };

            return types.Contains(type);
        }
Exemplo n.º 6
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.SelectButton);
 }
Exemplo n.º 7
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[]{ PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label };

            return types.Contains(type);
        }
Exemplo n.º 8
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.DropDown };

            return types.Contains(type);
        }
Exemplo n.º 9
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.TreeView);
 }
Exemplo n.º 10
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Image, PanelItemType.InfoIcon };

            return types.Contains(type);
        }
Exemplo n.º 11
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.Calendar);
 }
Exemplo n.º 12
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label);
 }
Exemplo n.º 13
0
 public bool CanRender(PanelItemType type)
 {
     return type == PanelItemType.Hidden;
 }