-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathThisAddIn.cs
79 lines (71 loc) · 2.65 KB
/
ThisAddIn.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.Linq;
using ScriptHelp.Scripts;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
namespace ScriptHelp
{
/// <summary>
/// Used to handle startup and shutdown of the addin
/// </summary>
public partial class ThisAddIn
{
/// <summary>
/// This method is used to handle events in the ribbon
/// </summary>
public static Excel.Application e_application;
/// <summary>
/// This method is used to handle events in the ribbon
/// </summary>
public static Office.IRibbonUI e_ribbon;
/// <summary>
/// This method is triggered on the startup of the addin
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
e_application = this.Application;
e_application.SheetSelectionChange += new Excel.AppEvents_SheetSelectionChangeEventHandler(e_Application_SheetSelectionChange);
}
/// <summary>
/// This method is triggered after the sheet selection change event
/// </summary>
/// <param name="sh">the name of the sheet </param>
/// <param name="target">the currently selected range </param>
/// <remarks></remarks>
private void e_Application_SheetSelectionChange(object sh, Excel.Range target)
{
e_ribbon.Invalidate();
}
/// <summary>
/// This method is triggered on the shutdown of the addin
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
e_application.SheetSelectionChange -= new Excel.AppEvents_SheetSelectionChangeEventHandler(e_Application_SheetSelectionChange);
e_application = null;
}
/// <summary>
/// This method is used to create the ribbon
/// </summary>
/// <returns></returns>
protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
{
return new Ribbon();
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}