コード例 #1
0
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 public COMAddin()
 {
     _factory = RaiseCreateFactory();
     if (null == _factory)
     {
         _factory = Core.Default;
     }
     TaskPanes         = new CustomTaskPaneCollection();
     TaskPaneInstances = new List <ITaskPane>();
 }
コード例 #2
0
ファイル: COMAddin.cs プロジェクト: krishkhan/NetOffice-NuGet
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 public COMAddin()
 {
     TaskPanes         = new CustomTaskPaneCollection();
     TaskPaneInstances = new List <ITaskPane>();
     Type = this.GetType();
 }
コード例 #3
0
ファイル: OfficeCOMAddin.cs プロジェクト: tinmanjk/NetOffice
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 public OfficeCOMAddin() : base()
 {
     TaskPanes = new CustomTaskPaneCollection();
 }