예제 #1
0
 protected override ActionRecord GenerateEmptyRecordCore()
 {
     var empty = new TextEditRecord(m_host.m_textbox);
     empty.ToEmpty();
     return empty;
 }
예제 #2
0
 protected override ActionRecord StartRecordCore()
 {
     m_currentRecord = new TextEditRecord(m_host.m_textbox);
     m_currentRecord.SetOldText(m_host.CurrentText);
     return m_currentRecord;
 }
예제 #3
0
 protected override void EndRecordCore()
 {
     m_currentRecord = null;
 }