public LGuiReplaceStringCommand(LGuiTextFieldState State, int Cursor, int Length, string NewValue) { this.State = State; this.Cursor = Cursor; this.Length = Length; this.NewValue = NewValue; }
public LGuiReplaceCharacterCommand(LGuiTextFieldState State, int Cursor, char NewCh) { this.State = State; this.Cursor = Cursor; this.NewCh = NewCh; }
public LGuiRemoveCharacterCommand(LGuiTextFieldState State, int Cursor) { this.State = State; this.Cursor = Cursor; }
public LGuiInsertCharacterCommand(LGuiTextFieldState State, int Cursor, char Ch) { this.State = State; this.Cursor = Cursor; this.Ch = Ch; }
public LGuiRemoveStringCommand(LGuiTextFieldState State, int Cursor, int Length) { this.State = State; this.Cursor = Cursor; this.Length = Length; }
public LGuiInsertStringCommand(LGuiTextFieldState State, int Cursor, string Value) { this.State = State; this.Cursor = Cursor; this.Value = Value; }