Exemple #1
0
 public void SetData(CodeViewData data)
 {
     this.Data  = data;
     IsReadOnly = false;
     Text       = data.Code;
     IsReadOnly = true;
 }
Exemple #2
0
 public void SetPlainText(string text)
 {
     Data       = null;
     IsReadOnly = false;
     Text       = text;
     IsReadOnly = true;
 }