System.ComponentModel.CustomTypeDescriptor.GetEditor C# (CSharp) Method

GetEditor() public method

public GetEditor ( Type editorBaseType ) : object
editorBaseType System.Type
return object
        public virtual object GetEditor(Type editorBaseType)
        {
            if (_parent != null)
            {
                return _parent.GetEditor(editorBaseType);
            }

            return null;
        }