Quick Simple LCD Question

Will adding the lcd.setCursor (0,1); string into void setup confine the lcd.print contained in the void loop to the Second line of the LCD?

// Switch on the backlight
lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
lcd.setBacklight(HIGH);
lcd.home (); // go home

  lcd.print("LockupController");  
  lcd.setCursor (0,1);  //<======== as seen here  
}

Only until you use another SetCursor or overflow the line with print statement.

You're best off explicitly setting the cursor just before printing.