Hawkeye.ComponentModel.GenericTypeDescriptor.GetEditor C# (CSharp) Method

GetEditor() public method

public GetEditor ( Type editorBaseType ) : object
editorBaseType System.Type
return object
        public object GetEditor(Type editorBaseType)
        {
            // Return nothing while we have nothing to show in UI.GenericComponentEditor
            return null;

            ////var editor = parentDescriptor.GetEditor(editorBaseType);
            ////if (editor == null && editorBaseType == typeof(ComponentEditor))
            ////    editor = new GenericComponentEditor();
            //////else if (editor == null && editorBaseType == typeof(UITypeEditor))
            //////    editor = new GenericUITypeEditor();
            ////return editor;
        }