This option is controlled by the MultiLineArgumentList property.
If you set the value of the property to False, the generated code looks like this:
void displayBatteryInfo(double percentLeft, int minutesLeft, bool isCharging);
If you set the value of the property to True, the generated code looks like this.
void displayBatteryInfo(double percentLeft,
int minutesLeft,
bool isCharging);