Example #1
0
 public CutCommand(Document document)
 {
     this.document = document;
     previousText = this.document.Text;
 }
Example #2
0
 public UnderlineCommand(Document document)
 {
     this.document = document;
     previousText = this.document.Text;
 }
Example #3
0
 public CopyCommand(Document document)
 {
     this.document = document;
 }
Example #4
0
 public ItalicizeCommand(Document document)
 {
     this.document = document;
     previousText = this.document.Text;
 }