public override EditorPartCollection CreateEditorParts()
        {
            ArrayList    editorArray = new ArrayList();
            MyEditorPart edPart      = new MyEditorPart();

            edPart.ID = this.ID + "_editorPart1";
            editorArray.Add(edPart);
            EditorPartCollection editorParts = new EditorPartCollection(editorArray);

            return(editorParts);
        }
 public override EditorPartCollection CreateEditorParts()
 {
     ArrayList editorArray = new ArrayList();
     MyEditorPart edPart = new MyEditorPart();
     edPart.ID = this.ID + "_editorPart1";
     editorArray.Add(edPart);
     EditorPartCollection editorParts = new EditorPartCollection(editorArray);
     return editorParts;
 }