/// <summary>
 ///  Selects the word specified by the index.
 /// </summary>
 /// <param name="selectionStart">Zero based index of the word on the Text.</param>
 /// <param name="selectionLength">length of the word to be selected.</param>
 public void SelectText(int selectionStart, int selectionLength)
 {
     textBox.Select(selectionStart, selectionLength);
 }