Exemplo n.º 1
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, int singleLine)
 {
     this.type     = type;
     this.position = new TextLocation(0, singleLine);
 }
Exemplo n.º 2
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, TextLocation position)
 {
     this.type     = type;
     this.position = position;
 }
Exemplo n.º 3
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type, int startLine, int endLine)
 {
     this.type     = type;
     this.position = new TextLocation(startLine, endLine);
 }
Exemplo n.º 4
0
 public TextAreaUpdate(ICSharpCode.TextEditor.TextAreaUpdateType type)
 {
     this.type = type;
 }