I just ran into a small mistake in the 'Text and fonts' tutorial, which seems to be indicating that the font class has afunction called getLineHeight.
Finally, you can get some other metrics of the font, such as the line height or the kerning (always for a certain character size):
int lineHeight = font.getLineHeight(characterSize);
int kerning = font.getKerning(character1, character2, characterSize);
Looking at the documentation (http://www.sfml-dev.org/documentation/2.1/classsf_1_1Font.php) and the header file (https://github.com/SFML/SFML/blob/master/include/SFML/Graphics/Font.hpp), I can't seem to find such a function. :)