/// <summary>
 /// Initializes the singleton instance of the command.
 /// </summary>
 public static void Initialize(Package package, TextSelector textSelector)
 {
     Instance = new PostHasteCommand(package, textSelector);
 }
Example #2
0
 /// <summary>
 /// Initializes the singleton instance of the command.
 /// </summary>
 public static void Initialize(Package package, TextSelector textSelector)
 {
     Instance = new PostHasteCommand(package, textSelector);
 }
Example #3
0
 protected override void Initialize()
 {
     PostHasteCommand.Initialize(this, new TextSelector());
     base.Initialize();
 }