You can't change the individual x and y coordinates of Position but to change Position, yes you would declare a new Vector2. For example if you wanted you modify just the y value, you would do this:
Position = new Vector2(Position.X, Position.Y - 10)