System.ComponentModel.ToolboxItemFilterAttribute.ToolboxItemFilterAttribute C# (CSharp) Method

ToolboxItemFilterAttribute() public method

public ToolboxItemFilterAttribute ( string filterString, ToolboxItemFilterType filterType ) : System
filterString string
filterType ToolboxItemFilterType
return System
        public ToolboxItemFilterAttribute(string filterString, ToolboxItemFilterType filterType) {
            if (filterString == null) filterString = String.Empty;
            
            this.filterString = filterString;
            this.filterType = filterType;
        }
        

Same methods

ToolboxItemFilterAttribute::ToolboxItemFilterAttribute ( string filterString ) : System