Hide StatusBarReset function
This commit is contained in:
parent
c1949a2159
commit
d6de208df4
@ -1,16 +0,0 @@
|
|||||||
#if !NET472
|
|
||||||
using System.Runtime.Versioning;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace RhSolutions.AddIn;
|
|
||||||
#if !NET472
|
|
||||||
[SupportedOSPlatform("windows")]
|
|
||||||
#endif
|
|
||||||
public static class ResetBarFunction
|
|
||||||
{
|
|
||||||
[ExcelFunction]
|
|
||||||
public static void StatusBarReset()
|
|
||||||
{
|
|
||||||
RhSolutionsAddIn.Excel.StatusBar = false;
|
|
||||||
}
|
|
||||||
}
|
|
@ -15,6 +15,12 @@ public abstract class StatusbarBase : IDisposable
|
|||||||
{
|
{
|
||||||
protected Application Excel = RhSolutionsAddIn.Excel;
|
protected Application Excel = RhSolutionsAddIn.Excel;
|
||||||
|
|
||||||
|
[ExcelFunction(IsHidden = true)]
|
||||||
|
public static void StatusBarReset()
|
||||||
|
{
|
||||||
|
RhSolutionsAddIn.Excel.StatusBar = false;
|
||||||
|
}
|
||||||
|
|
||||||
public abstract void Update();
|
public abstract void Update();
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
Loading…
Reference in New Issue
Block a user