diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-23 21:10:43 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-23 21:10:43 +0300 |
commit | 0ccbf29382b43d19f7ea0d1f4b5841149137842d (patch) | |
tree | f93cc67ffc387e281c2c8f15f4d645cfa40339cf /src/AddIn/Functions.cs | |
parent | 9892b3687f4c896fbaeb85717857f39f5316111c (diff) |
Return to ResetStatusBar Excel macro function
Diffstat (limited to 'src/AddIn/Functions.cs')
-rw-r--r-- | src/AddIn/Functions.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AddIn/Functions.cs b/src/AddIn/Functions.cs index 2be19fa..0d3aef5 100644 --- a/src/AddIn/Functions.cs +++ b/src/AddIn/Functions.cs @@ -27,5 +27,11 @@ namespace RhSolutions.AddIn return result; } + + [ExcelFunction] + public static void ResetStatusBar() + { + RhSolutionsAddIn.Excel.StatusBar = false; + } } }
\ No newline at end of file |