Exemple #1
0
 /// <summary>
 /// Change SelectionEffectType to normal.
 /// </summary>
 public void SelectionNormalScript()
 {
     RichTextBoxModel.SetSelectionEffect(GetContext(), DevAge.Windows.Forms.EffectType.Normal);
 }
Exemple #2
0
 /// <summary>
 /// Insert a string at the selection
 /// </summary>
 /// <param name="s">String to insert</param>
 public void InsertString(string s)
 {
     RichTextBoxModel.InsertString(GetContext(), s);
 }