summaryrefslogtreecommitdiff
path: root/Tools/ToolFactory.cs
blob: dba781e0a1cba266a943379ae66bc9cd20df177c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using ExcelDna.Integration.CustomUI;

namespace ExcelAddIn.Tools;

public static class ToolFactory 
{
	public static Tool GetTool(IRibbonControl control)
	{
		return control.Id switch 
		{
			"Button1" => new Button1Tool(),
			"Button2" => new Button2Tool(),
			"Button3" => new Button3Tool(),
			_ => throw new NotImplementedException(control.Id)
		};
	}
}