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

DrawListViewColumnHeaderEventArgs() public method

public DrawListViewColumnHeaderEventArgs ( Graphics graphics, Rectangle bounds, int columnIndex, ColumnHeader header, ListViewItemStates state, Color foreColor, Color backColor, Font font ) : System.Drawing
graphics System.Drawing.Graphics
bounds System.Drawing.Rectangle
columnIndex int
header ColumnHeader
state ListViewItemStates
foreColor Color
backColor Color
font System.Drawing.Font
return System.Drawing
        public DrawListViewColumnHeaderEventArgs(Graphics graphics, Rectangle bounds, int columnIndex,
                                        ColumnHeader header, ListViewItemStates state, Color foreColor,
                                        Color backColor, Font font)
        {
            this.backColor = backColor;
            this.bounds = bounds;
            this.columnIndex = columnIndex;
            this.font = font;
            this.foreColor = foreColor;
            this.graphics = graphics;
            this.header = header;
            this.state = state;
        }