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

DrawItemEventArgs() public method

public DrawItemEventArgs ( Graphics graphics, Font font, Rectangle rect, int index, DrawItemState state, Color foreColor, Color backColor ) : System
graphics System.Drawing.Graphics
font System.Drawing.Font
rect System.Drawing.Rectangle
index int
state DrawItemState
foreColor Color
backColor Color
return System
		public DrawItemEventArgs (Graphics graphics, Font font,
				Rectangle rect, int index, DrawItemState state,
				Color foreColor, Color backColor)
		{
			this.graphics = graphics;
			this.font = font;
			this.rect = rect;
			this.index = index;
			this.state = state;
			this.fore_color = foreColor;
			this.back_color = backColor;
		}

Same methods

DrawItemEventArgs::DrawItemEventArgs ( Graphics graphics, Font font, Rectangle rect, int index, DrawItemState state ) : System