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

ToolboxItemAttribute() public method

public ToolboxItemAttribute ( string toolboxItemTypeName ) : System
toolboxItemTypeName string
return System
        public ToolboxItemAttribute(string toolboxItemTypeName) {
            string temp = toolboxItemTypeName.ToUpper(CultureInfo.InvariantCulture);
            Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + toolboxItemTypeName + " . Please remove the .dll extension");
            this.toolboxItemTypeName = toolboxItemTypeName;
        }

Same methods

ToolboxItemAttribute::ToolboxItemAttribute ( Type toolboxItemType ) : System
ToolboxItemAttribute::ToolboxItemAttribute ( bool defaultType ) : System