2022-04-01 17:39:01 +03:00
|
|
|
|
using ExcelDna.Integration;
|
|
|
|
|
using Microsoft.Office.Interop.Excel;
|
2022-02-04 09:17:12 +03:00
|
|
|
|
|
|
|
|
|
namespace RehauSku.Interface
|
|
|
|
|
{
|
2022-04-01 17:39:01 +03:00
|
|
|
|
internal abstract class AbstractBar
|
2022-02-04 09:17:12 +03:00
|
|
|
|
{
|
|
|
|
|
protected Application Excel = AddIn.Excel;
|
|
|
|
|
|
|
|
|
|
public abstract void Update();
|
2022-04-01 17:39:01 +03:00
|
|
|
|
|
|
|
|
|
[ExcelFunction]
|
|
|
|
|
public static void ResetStatusBar()
|
|
|
|
|
{
|
|
|
|
|
AddIn.Excel.StatusBar = false;
|
|
|
|
|
}
|
2022-02-04 09:17:12 +03:00
|
|
|
|
}
|
|
|
|
|
}
|