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