I have a long path I'd like to shorten for displaying on a form using the ellipsis character(s?).

I know there is the PathCompactPathEx Win32 API call, but I know there is a built-in .NET equivalent. I have used it previously, but cannot find it any more. Any hints, please?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Your own link has

Alternative Managed API: System.Windows.Forms.TextRenderer.MeasureText(String, Font, Size, TextFormatFlags.ModifyString | TextFormatFlags.PathEllipsis);

at the bottom. Is that what you are looking for?

link|improve this answer
You were faster. TextRenderer.DrawText() to render it accordingly. – Benjamin Podszun Mar 27 '10 at 13:40
Errr, yes. How embarrassing. Thanks :) – Rezzie Mar 27 '10 at 13:41
feedback

Using the ModifyString flag in versions of .Net since (at least) version 3.5 exposes an ugly and potentially dangerous bug discussed here.

Hans Passant found the correct way to do this here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.