Пример #1
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, int singleLine)
 {
     this.type     = type;
     this.position = new TextLocation(0, singleLine);
 }
Пример #2
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, TextLocation position)
 {
     this.type     = type;
     this.position = position;
 }
Пример #3
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, int startLine, int endLine)
 {
     this.type     = type;
     this.position = new TextLocation(startLine, endLine);
 }
Пример #4
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type)
 {
     this.type = type;
 }