خاصیت SelectionStart از کنترل TextBoxBase یک عدد برمیگرداند که معادل مکان فعلی کرسر است :

private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
this.Text = textBox1.SelectionStart.ToString();
}
یافتن رشته انتخاب شده در یک تکست باکس :
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(textBox1.SelectedText);
}

یافتن طول رشته انتخاب شده :
int n = textBox1.SelectionLength;