// There seems to be no public way to set these properties  :/
 internal ToolStripGripRenderEventArgs(Graphics g, ToolStrip toolStrip, Rectangle gripBounds, ToolStripGripDisplayStyle displayStyle, ToolStripGripStyle gripStyle)
     : base(g, toolStrip)
 {
     this.grip_bounds        = gripBounds;
     this.grip_display_style = displayStyle;
     this.grip_style         = gripStyle;
 }
		// There seems to be no public way to set these properties  :/
		internal ToolStripGripRenderEventArgs (Graphics g, ToolStrip toolStrip, Rectangle gripBounds, ToolStripGripDisplayStyle displayStyle, ToolStripGripStyle gripStyle)
			: base (g, toolStrip)
		{
			this.grip_bounds = gripBounds;
			this.grip_display_style = displayStyle;
			this.grip_style = gripStyle;
		}
 public ToolStripGripRenderEventArgs(Graphics g, ToolStrip toolStrip)
     : base(g, toolStrip)
 {
     this.grip_bounds        = new Rectangle(2, 0, 3, 25);
     this.grip_display_style = ToolStripGripDisplayStyle.Vertical;
     this.grip_style         = ToolStripGripStyle.Visible;
 }
		public ToolStripGripRenderEventArgs (Graphics g, ToolStrip toolStrip) 
			: base (g, toolStrip)
		{
			this.grip_bounds = new Rectangle (2, 0, 3, 25);
			this.grip_display_style = ToolStripGripDisplayStyle.Vertical;
			this.grip_style = ToolStripGripStyle.Visible;
		}