ToolStripRenderer.DrawImageMargin(ToolStripRenderEventArgs) Method

Definition

Draws the space around an image on a ToolStrip.

public:
 void DrawImageMargin(System::Windows::Forms::ToolStripRenderEventArgs ^ e);
public void DrawImageMargin (System.Windows.Forms.ToolStripRenderEventArgs e);
member this.DrawImageMargin : System.Windows.Forms.ToolStripRenderEventArgs -> unit
Public Sub DrawImageMargin (e As ToolStripRenderEventArgs)

Parameters

e
ToolStripRenderEventArgs

A ToolStripRenderEventArgs that contains the data to draw the space around the image.

Remarks

The DrawImageMargin method provides the entry point to the rendering code for the image. Use this method to draw the image margin when overriding the ToolStripItem.OnPaint method, or to force the image margin to be drawn in a custom ToolStripRenderer. To change the way the image margin is rendered, override the OnRenderImageMargin method in a class derived from ToolStripRenderer.

Applies to