The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Die grafische L��nge eines Strings mit C# bestimmen

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
-

Posts: 1524
Nickname: nitronic
Registered: Jul, 2006

Norbert Eder works as a software architect.
Die grafische L��nge eines Strings mit C# bestimmen Posted: Aug 30, 2006 9:04 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by -.
Original Post: Die grafische L��nge eines Strings mit C# bestimmen
Feed Title: Norbert Eder - Living .NET
Feed URL: http://feeds.feedburner.com/NorbertEder-Livingnet
Feed Description: Copyright (c)2005, 2006 by Norbert Eder
Latest .NET Buzz Posts
Latest .NET Buzz Posts by -
Latest Posts From Norbert Eder - Living .NET

Advertisement
In manchen F��llen (bei der Erstellung von UserControls oder der Verwendung von GDI+) ist es notwendig, die grafische L��nge eines Strings zu kennen (also nicht nur die Anzahl der Zeichen). Nachfolgender Code zeigt, wie dies bewerkstelligt werden kann:

string test = "This is a test!";

Font font = new Font("Arial", 10.0F);
Graphics g = this.CreateGraphics();
SizeF sizeInfo = g.MeasureString(test, font);

this ist in diesem Fall eine Form, kann jedoch genausogut eine PictureBox etc. sein.

Read: Die grafische L��nge eines Strings mit C# bestimmen

Topic: [Podcast] Business and Autonomous Components in SOA Previous Topic   Next Topic Topic: Applied Test-Driven Development Video

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use