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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/TextUI/Commanding/Commands/UndoCommandArgs.cs')
-rw-r--r--src/Text/Def/TextUI/Commanding/Commands/UndoCommandArgs.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Text/Def/TextUI/Commanding/Commands/UndoCommandArgs.cs b/src/Text/Def/TextUI/Commanding/Commands/UndoCommandArgs.cs
new file mode 100644
index 0000000..ce0df8b
--- /dev/null
+++ b/src/Text/Def/TextUI/Commanding/Commands/UndoCommandArgs.cs
@@ -0,0 +1,12 @@
+namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
+{
+ public sealed class UndoCommandArgs : EditorCommandArgs
+ {
+ public readonly int Count;
+
+ public UndoCommandArgs(ITextView textView, ITextBuffer subjectBuffer, int count = 1) : base(textView, subjectBuffer)
+ {
+ this.Count = count;
+ }
+ }
+}