// 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(); }
// 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); }