ToolStripRenderer.DrawItemText(ToolStripItemTextRenderEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Draws text on a ToolStripItem.
public:
void DrawItemText(System::Windows::Forms::ToolStripItemTextRenderEventArgs ^ e);
public void DrawItemText (System.Windows.Forms.ToolStripItemTextRenderEventArgs e);
member this.DrawItemText : System.Windows.Forms.ToolStripItemTextRenderEventArgs -> unit
Public Sub DrawItemText (e As ToolStripItemTextRenderEventArgs)
Parameters
A ToolStripItemTextRenderEventArgs that contains the data to draw the text.
Remarks
The DrawItemText method provides the entry point to the rendering code for the text of a ToolStripItem. Use this method to draw the item text when overriding the ToolStripItem.OnPaint method, or to force the item text to be drawn in a custom ToolStripRenderer. To change the way the item text is rendered, override the OnRenderItemText method in a class derived from ToolStripRenderer.