Ejemplo n.º 1
0
 public LGuiReplaceStringCommand(LGuiTextFieldState State, int Cursor, int Length, string NewValue)
 {
     this.State    = State;
     this.Cursor   = Cursor;
     this.Length   = Length;
     this.NewValue = NewValue;
 }
Ejemplo n.º 2
0
 public LGuiReplaceCharacterCommand(LGuiTextFieldState State, int Cursor, char NewCh)
 {
     this.State  = State;
     this.Cursor = Cursor;
     this.NewCh  = NewCh;
 }
Ejemplo n.º 3
0
 public LGuiRemoveCharacterCommand(LGuiTextFieldState State, int Cursor)
 {
     this.State  = State;
     this.Cursor = Cursor;
 }
Ejemplo n.º 4
0
 public LGuiInsertCharacterCommand(LGuiTextFieldState State, int Cursor, char Ch)
 {
     this.State  = State;
     this.Cursor = Cursor;
     this.Ch     = Ch;
 }
Ejemplo n.º 5
0
 public LGuiRemoveStringCommand(LGuiTextFieldState State, int Cursor, int Length)
 {
     this.State  = State;
     this.Cursor = Cursor;
     this.Length = Length;
 }
Ejemplo n.º 6
0
 public LGuiInsertStringCommand(LGuiTextFieldState State, int Cursor, string Value)
 {
     this.State  = State;
     this.Cursor = Cursor;
     this.Value  = Value;
 }