Exemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int singleLine)
 {
     TextAreaUpdateType = type;
     Position           = new TextLocation(0, singleLine);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, TextLocation position)
 {
     TextAreaUpdateType = type;
     Position           = position;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int startLine, int endLine)
 {
     TextAreaUpdateType = type;
     Position           = new TextLocation(startLine, endLine);
 }
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int singleLine)
 {
     this.type     = type;
     this.position = new Point(0, singleLine);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type)
 {
     TextAreaUpdateType = type;
 }
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, Point position)
 {
     this.type     = type;
     this.position = position;
 }
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int startLine, int endLine)
 {
     this.type     = type;
     this.position = new Point(startLine, endLine);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, TextLocation position)
 {
     this.type     = type;
     this.position = position;
 }
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type)
 {
     this.type = type;
 }
Exemplo n.º 10
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int startLine, int endLine)
 {
     this.type     = type;
     this.position = new TextLocation(startLine, endLine);
 }
Exemplo n.º 11
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, int singleLine)
 {
     this.type     = type;
     this.position = new TextLocation(0, singleLine);
 }
Exemplo n.º 12
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type, TextLocation position)
 {
     this.type     = type;
     this.position = position;
 }
Exemplo n.º 13
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 public TextAreaUpdate(TextAreaUpdateType type)
 {
     this.type = type;
 }
Exemplo n.º 14
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 /// <param name="type">The type.</param>
 /// <param name="position">The position.</param>
 public TextAreaUpdate(TextAreaUpdateType type, TextLocation position)
 {
     _type = type;
       _position = position;
 }
Exemplo n.º 15
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>
 /// <param name="type">The type.</param>
 public TextAreaUpdate(TextAreaUpdateType type)
 {
     _type = type;
 }
Exemplo n.º 16
0
 /// <summary>
 /// Creates a new instance of <see cref="TextAreaUpdate"/>
 /// </summary>	
 public TextAreaUpdate(TextAreaUpdateType type, Point position)
 {
     this.type     = type;
     this.position = position;
 }