#region License
// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
// This source code is made available under the terms of the GNU Lesser General Public License v3.0
// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
#endregion
using System.Windows.Forms;
namespace MiniSqlQuery.Core.Commands
{
///
/// Description of PasteAroundSelectionCommand.
///
public class PasteAroundSelectionCommand : CommandBase
{
///
/// Initializes a new instance of the class.
///
public PasteAroundSelectionCommand()
: base("Õ³ÌùËùÑ¡ÄÚÈÝ£¨&A£©")
{
ShortcutKeys = Keys.Alt | Keys.A;
SmallImage = ImageResource.around_text;
}
///
/// Gets or sets the "left text".
///
/// The "left text".
public static string LeftText { get; set; }
///
/// Gets or sets the "right text".
///
/// The "right text".
public static string RightText { get; set; }
///
/// Execute the command.
///
public override void Execute()
{
var queryForm = HostWindow.Instance.ActiveMdiChild as IQueryEditor;
if (queryForm != null)
{
string newText = string.Concat(LeftText, queryForm.SelectedText, RightText);
queryForm.InsertText(newText);
}
}
}
}