Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MoveSelectedLinesDownCommandArgs.cs « Commands « Commanding « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c3d7017e95c53b1f535d35b2828090c56e1e5c0 (plain)
1
2
3
4
5
6
7
8
9
namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
{
    public sealed class MoveSelectedLinesDownCommandArgs : EditorCommandArgs
    {
        public MoveSelectedLinesDownCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }
}