My coding style is as below:
if (TrueCondition)
  {
    Success = DoSomething();
    ...
  }
else
  {
    DoSomethingElse();
  }
How do I:
  1)  Get the cursor to automatically indent on the next line after a "begin" curly brace.
  2)  When I paste (carefully formatted code), the indentation is being lost between the "begin" left curly brace and the following lines of code.  Here's an example:
if (TrueCondition)
  {
  Success = DoSomething();
  ...
  }
else
  {
  DoSomethingElse();
  }
Is there a way within Visual Assist to change these behaviors?