RhSolutions-AddIn/RhSolutions.AddIn/Tools/DxfTool.cs

20 lines
450 B
C#
Raw Normal View History

2023-04-07 08:10:28 +03:00
#if !NET472
using System.Runtime.Versioning;
#endif
namespace RhSolutions.Tools;
#if !NET472
[SupportedOSPlatform("windows")]
#endif
2023-04-14 08:08:46 +03:00
internal class DxfTool : Tool
2023-04-07 08:10:28 +03:00
{
public override void Execute()
{
Application app = RhSolutionsAddIn.Excel.Application;
Worksheet worksheet = app.ActiveWorkbook.ActiveSheet;
var products = _reader.ReadProducts(new[] { worksheet });
_writer.WriteProducts(products);
}
}