public EditorToolFactory CustomTemplate(Action<EditorCustomTemplateToolBuilder> configurator)
        {
            var tool = new EditorCustomTemplateTool();
            configurator(new EditorCustomTemplateToolBuilder(tool));
            group.Tools.Add(tool);

            return this;
        }
Esempio n. 2
0
        public EditorToolFactory CustomTemplate(Action <EditorCustomTemplateToolBuilder> configurator)
        {
            var tool = new EditorCustomTemplateTool();

            configurator(new EditorCustomTemplateToolBuilder(tool));
            group.Tools.Add(tool);

            return(this);
        }
Esempio n. 3
0
 public EditorCustomTemplateToolBuilder(EditorCustomTemplateTool tool)
 {
     this.tool = tool;
 }
Esempio n. 4
0
 public EditorCustomTemplateToolBuilder(EditorCustomTemplateTool tool)
 {
     this.tool = tool;
 }