GDI lets you set the intercharacter spacing within a string. Is there an
equivalent hidden away somewhere in .NET's Graphics class? I can't seem to
find anything that does the trick.
There isn't anything in the GDI+ framework to do this. I have had to resort
to individual character placement schemes to overcome this problem in the
past.

Signature
--
Bob Powell [MVP]
Visual C#, System.Drawing
Ramuseco Limited .NET consulting
http://www.ramuseco.com
Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm
All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
> GDI lets you set the intercharacter spacing within a string. Is there an
> equivalent hidden away somewhere in .NET's Graphics class? I can't seem to
> find anything that does the trick.
Mark Raishbrook - 07 Jan 2008 11:20 GMT
> There isn't anything in the GDI+ framework to do this. I have had to resort
> to individual character placement schemes to overcome this problem in the
> past.
Rats. Thanks for the answer anyway, Bob.