I'd like to be able to align the tabstops I use in a StringFormat (set with the SetTabStops() method)

Is this possible?

link|improve this question

1  
Align to what, exactly? – Hans Passant Dec 22 '10 at 22:14
Some tabbing systems allow you to align a tabstop, left/right/central. for example... t2.gstatic.com/images?q=tbn:gn3m_Q1whg_u_M:http://… – Slomojo Dec 23 '10 at 0:04
(left, right or near, far if you follow the StringAlignment model.) – Slomojo Dec 23 '10 at 3:54
feedback

1 Answer

up vote 1 down vote accepted

See (Update: Didn't help much as per comments below)


Or, as I commented further and recommend by yourself :)

In String.Format I don't think so as all it specializes in is replacing {n} parts with different formatters. One thing you may be able to do is to split the string by '\t', and apply .PadLeft() or .PadRight() to each and then string.Join() them, or use any of the suggestions above, but, string.Format is likely dead end for this one.

link|improve this answer
Please forgive me, I already know how to use SetTabStops to setup basic near aligned tabs, I am wondering if there is an in-built mechanism for aligning a tab centrally or far, as well as near. – Slomojo Dec 23 '10 at 3:53
In String.Format I don't think so as all it specializes in is replacing {n} parts with different formatters. One thing you may be able to do is to split the string by '\t', and apply .PadLeft() or .PadRight() to each and then string.Join() them, or use any of the suggestions above, but, string.Format is likely dead end for this one. – Mohamed Meligy Dec 23 '10 at 4:53
Make ^ this your answer, and you get a shiny up-vote and a green check. – Slomojo Dec 29 '10 at 8:29
:D - OK. Done! See above. – Mohamed Meligy Dec 29 '10 at 10:41
feedback

Your Answer

 
or
required, but never shown

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