Moving cursor 2 lines down in text field?

Maybe a very simple solution, but I cannot get it done. Is there a way to move the cursor 2 lines down in a text area field after hitting the return key? I know I can simply hit the return key twice, but I was hoping to get this done by code.

Set the SelectedText = EndOfLine and increment SelectionStart. If nothing is selected, setting SelectedText performs an insert at the cursor.

1 Like

Thanks, Tim.