Right aligning the text in a set of menu items using ToolStripMenuItem.

I want to make a menustrip display numbers in the dropdown list to be right aligned. Below is some of the code that I used with MainMenu and MenuItem This code is based upon the DrawItemEventArgs class.
Dim sf As New StringFormat
sf.Alignment = StringAlignment.Far
e.DrawBackground()
Dim oRect As RectangleF
e.Graphics.DrawString(Format(CInt(iArrSize(e.Index)), "#,###"), cbo.Font, System.Drawing.Brushes.Black, oRect, sf)

I would like to do the same using MenuStrip and ToolStripMenuItem. I would expect the code to be similar but based upon the ToolStripItemTextRenderEventArgs class. I have searched everywhere and tried everything that I can think of but without any success. Can someone help?

[740 byte] By [GenoJoe] at [2007-12-24]
# 1
Try setting the RightToLeft property of the ToolStripMenuItem control to True and see if you like it. It works on a ToolStrip dropdown button too...
nobugz at 2007-10-8 > top of Msdn Tech,Windows Forms,Windows Forms General...