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

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