void tip_InputAreaChanging(object sender, InputAreaChangeEventArgs e)
 {
     // Change the status to show the new input area.
     seForm.m_richTextBox1.Text += "InputAreaChanging from " + e.OldArea.ToString() + " to " + e.NewArea.ToString() + Environment.NewLine;
 }
 void tip_InputAreaChanged(object sender, InputAreaChangeEventArgs e)
 {
     // Change the status to show the new input area.
     seForm.m_richTextBox1.Text += "CurrentInputArea is " + tipShared.CurrentInputArea + Environment.NewLine;
 }