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