Mit dieser Funktion kann man die Größe eines Strings berechnet werden. Die Höhe und Breite des Strings wird als SizeF Struct zurückgegeben.
Dies ist eine Übersetzung in C# von diesem (http://dotnet-snippets.de/dns/groesse-eines-strings-berechnen-SID140.aspx)Snippet.
/// <summary>
/// Measures the size of the string.
/// </summary>
/// <param name="textToMeasure">The text to measure.</param>
/// <param name="font">The font.</param>
/// <returns></returns>
private SizeF MeasureStringSize(string textToMeasure, Font font)
{
Bitmap bmp = new Bitmap(1, 1);
Graphics graphics = Graphics.FromImage(bmp);
SizeF size = graphics.MeasureString(textToMeasure, font);
bmp.Dispose();
graphics.Dispose();
return size;
}
1 Kommentare zum Snippet