System.Windows.Forms.DrawToolTipEventArgs.DrawToolTipEventArgs C# (CSharp) Method

DrawToolTipEventArgs() public method

public DrawToolTipEventArgs ( Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font ) : System.Drawing
graphics System.Drawing.Graphics
associatedWindow IWin32Window
associatedControl Control
bounds System.Drawing.Rectangle
toolTipText string
backColor Color
foreColor Color
font System.Drawing.Font
return System.Drawing
		public DrawToolTipEventArgs (Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font)
		{
			this.graphics = graphics;
			this.associated_window = associatedWindow;
			this.associated_control = associatedControl;
			this.bounds = bounds;
			this.tooltip_text = toolTipText;
			this.back_color = backColor;
			this.fore_color = foreColor;
			this.font = font;
		}