コード例 #1
0
ファイル: PasteAtPackage.cs プロジェクト: csharpf/opaste
 // method
 /// <summary>
 /// Initialization of the package; this method is called right after the package is sited.
 /// </summary>
 protected override void Initialize()
 {
     PasteAt.Initialize(this);
     base.Initialize();
 }
コード例 #2
0
 // static method
 /// <summary>
 /// Initialize the singleton instance of the command.
 /// </summary>
 /// <param name="pkg">Owner package.</param>
 public static void Initialize(Package pkg)
 {
     Instance = new PasteAt(pkg);
 }