RhSolutions-AddIn/Source/AddIn/AddIn.cs

42 lines
918 B
C#
Raw Normal View History

2021-11-29 15:50:24 +03:00
using ExcelDna.Integration;
using ExcelDna.IntelliSense;
2021-11-29 15:50:24 +03:00
using ExcelDna.Registration;
using System.Net.Http;
2021-11-29 15:50:24 +03:00
2021-12-08 14:45:14 +03:00
namespace RehauSku
2021-11-29 15:50:24 +03:00
{
public enum ResponseOrder
{
Default,
Relevance,
Name,
Price,
Series
}
2021-11-29 15:50:24 +03:00
public class AddIn : IExcelAddIn
{
2021-12-22 08:26:54 +03:00
public static HttpClient httpClient = new HttpClient();
2021-11-29 15:50:24 +03:00
public void AutoOpen()
{
RegisterFunctions();
IntelliSenseServer.Install();
2021-12-22 17:07:37 +03:00
RegistryUtil.Initialize();
2021-11-29 15:50:24 +03:00
}
public void AutoClose()
{
IntelliSenseServer.Uninstall();
2021-12-23 15:31:23 +03:00
RegistryUtil.Uninitialize();
2021-11-29 15:50:24 +03:00
}
void RegisterFunctions()
{
ExcelRegistration.GetExcelFunctions()
.ProcessAsyncRegistrations(nativeAsyncIfAvailable: false)
.RegisterFunctions();
}
}
}