ToolStripRenderer.DrawSeparator(ToolStripSeparatorRenderEventArgs) 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 a ToolStripSeparator.
public:
void DrawSeparator(System::Windows::Forms::ToolStripSeparatorRenderEventArgs ^ e);
public void DrawSeparator (System.Windows.Forms.ToolStripSeparatorRenderEventArgs e);
member this.DrawSeparator : System.Windows.Forms.ToolStripSeparatorRenderEventArgs -> unit
Public Sub DrawSeparator (e As ToolStripSeparatorRenderEventArgs)
Parameters
A ToolStripSeparatorRenderEventArgs that contains the data to draw the ToolStripSeparator.
Remarks
The DrawSeparator method provides the entry point to the rendering code for a ToolStripSeparator. Use this method to draw the ToolStripSeparator when overriding the ToolStrip.OnPaint method, or to force a ToolStripSeparator to be drawn in a custom ToolStripRenderer. To change the way the ToolStripSeparator is rendered, override the OnRenderSeparator method in a class derived from ToolStripRenderer.