2023-04-06 08:29:39 +03:00
|
|
|
|
#if !NET472
|
|
|
|
|
using System.Runtime.Versioning;
|
|
|
|
|
#endif
|
2023-03-27 15:52:28 +03:00
|
|
|
|
|
2023-04-06 08:29:39 +03:00
|
|
|
|
namespace RhSolutions.AddIn;
|
|
|
|
|
#if !NET472
|
|
|
|
|
[SupportedOSPlatform("windows")]
|
|
|
|
|
#endif
|
2023-03-28 10:03:19 +03:00
|
|
|
|
public static class ResetBarFunction
|
2023-03-27 15:52:28 +03:00
|
|
|
|
{
|
2023-03-28 10:03:19 +03:00
|
|
|
|
[ExcelFunction]
|
2023-04-06 08:29:39 +03:00
|
|
|
|
public static void StatusBarReset()
|
2023-03-27 15:52:28 +03:00
|
|
|
|
{
|
2023-03-28 10:03:19 +03:00
|
|
|
|
RhSolutionsAddIn.Excel.StatusBar = false;
|
2023-03-27 15:52:28 +03:00
|
|
|
|
}
|
|
|
|
|
}
|