Esempio n. 1
0
 public void Apply(TEXInput input)
 {
     input.text            = text;
     input.selectionStart  = selectionStart;
     input.selectionLength = selectionLength;
 }
Esempio n. 2
0
 public UndoState(TEXInput input)
 {
     text            = input.text;
     selectionStart  = input.selectionStart;
     selectionLength = input.selectionLength;
 }