File: winforms\Managed\System\WinForms\DataGridViewCellPaintingEventArgs.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="DataGridViewCellPaintingEventArgs.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    using System;
    using System.Drawing;
    using System.Diagnostics;
    using System.ComponentModel;
 
    /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs"]/*' />
    public class DataGridViewCellPaintingEventArgs : HandledEventArgs
    {
        private DataGridView dataGridView;
        private Graphics graphics;
        private Rectangle clipBounds;
        private Rectangle cellBounds;
        private int rowIndex, columnIndex;
        private DataGridViewElementStates cellState;
        private object value;
        private object formattedValue;
        private string errorText;
        private DataGridViewCellStyle cellStyle;
        private DataGridViewAdvancedBorderStyle advancedBorderStyle;
        private DataGridViewPaintParts paintParts;
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.DataGridViewCellPaintingEventArgs"]/*' />
        public DataGridViewCellPaintingEventArgs(DataGridView dataGridView,
                                                 Graphics graphics, 
                                                 Rectangle clipBounds,
                                                 Rectangle cellBounds, 
                                                 int rowIndex, 
                                                 int columnIndex, 
                                                 DataGridViewElementStates cellState,
                                                 object value,
                                                 object formattedValue,
                                                 string errorText,
                                                 DataGridViewCellStyle cellStyle,
                                                 DataGridViewAdvancedBorderStyle advancedBorderStyle,
                                                 DataGridViewPaintParts paintParts)
        {
            if (dataGridView == null)
            {
                throw new ArgumentNullException("dataGridView");
            }
            if (graphics == null)
            {
                throw new ArgumentNullException("graphics");
            }
            if (cellStyle == null)
            {
                throw new ArgumentNullException("cellStyle");
            }
            if ((paintParts & ~DataGridViewPaintParts.All) != 0)
            {
                throw new ArgumentException(SR.GetString(SR.DataGridView_InvalidDataGridViewPaintPartsCombination, "paintParts"));
            }
            this.graphics = graphics;
            this.clipBounds = clipBounds;
            this.cellBounds = cellBounds;
            this.rowIndex = rowIndex;
            this.columnIndex = columnIndex;
            this.cellState = cellState;
            this.value = value;
            this.formattedValue = formattedValue;
            this.errorText = errorText;
            this.cellStyle = cellStyle;
            this.advancedBorderStyle = advancedBorderStyle;
            this.paintParts = paintParts;
        }
 
        internal DataGridViewCellPaintingEventArgs(DataGridView dataGridView)
        {
            Debug.Assert(dataGridView != null);
            this.dataGridView = dataGridView;
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.AdvancedBorderStyle"]/*' />
        public DataGridViewAdvancedBorderStyle AdvancedBorderStyle
        {
            get
            {
                return this.advancedBorderStyle;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.CellBounds"]/*' />
        public Rectangle CellBounds
        {
            get
            {
                return this.cellBounds;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.CellStyle"]/*' />
        public DataGridViewCellStyle CellStyle
        {
            get
            {
                return this.cellStyle;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.ClipBounds"]/*' />
        public Rectangle ClipBounds
        {
            get
            {
                return this.clipBounds;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.ColumnIndex"]/*' />
        public int ColumnIndex
        {
            get
            {
                return this.columnIndex;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.ErrorText"]/*' />
        public string ErrorText
        {
            get
            {
                return this.errorText;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.FormattedValue"]/*' />
        public object FormattedValue
        {
            get
            {
                return this.formattedValue;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.Graphics"]/*' />
        public Graphics Graphics
        {
            get
            {
                return this.graphics;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.PaintParts"]/*' />
        public DataGridViewPaintParts PaintParts
        {
            get
            {
                return this.paintParts;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.RowIndex"]/*' />
        public int RowIndex
        {
            get
            {
                return this.rowIndex;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.State"]/*' />
        public DataGridViewElementStates State 
        {
            get 
            {
                return this.cellState;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.Value"]/*' />
        public object Value
        {
            get
            {
                return this.value;
            }
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.Paint"]/*' />
        public void Paint(Rectangle clipBounds, DataGridViewPaintParts paintParts)
        {
            if (this.rowIndex < -1 || this.rowIndex >= this.dataGridView.Rows.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange));
            }
            if (this.columnIndex < -1 || this.columnIndex >= this.dataGridView.Columns.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_ColumnIndexOutOfRange));
            }
            this.dataGridView.GetCellInternal(this.columnIndex, this.rowIndex).PaintInternal(this.graphics,
                                                                                             clipBounds,
                                                                                             this.cellBounds,
                                                                                             this.rowIndex,
                                                                                             this.cellState,
                                                                                             this.value,
                                                                                             this.formattedValue,
                                                                                             this.errorText,
                                                                                             this.cellStyle,
                                                                                             this.advancedBorderStyle,
                                                                                             paintParts);
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.PaintBackground"]/*' />
        public void PaintBackground(Rectangle clipBounds, bool cellsPaintSelectionBackground)
        {
            if (this.rowIndex < -1 || this.rowIndex >= this.dataGridView.Rows.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange));
            }
            if (this.columnIndex < -1 || this.columnIndex >= this.dataGridView.Columns.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_ColumnIndexOutOfRange));
            }
            DataGridViewPaintParts paintParts = DataGridViewPaintParts.Background | DataGridViewPaintParts.Border;
            if (cellsPaintSelectionBackground)
            {
                paintParts |= DataGridViewPaintParts.SelectionBackground;
            }
            this.dataGridView.GetCellInternal(this.columnIndex, this.rowIndex).PaintInternal(this.graphics,
                                                                                             clipBounds,
                                                                                             this.cellBounds,
                                                                                             this.rowIndex,
                                                                                             this.cellState,
                                                                                             this.value,
                                                                                             this.formattedValue,
                                                                                             this.errorText,
                                                                                             this.cellStyle,
                                                                                             this.advancedBorderStyle,
                                                                                             paintParts);
        }
 
        /// <include file='doc\DataGridViewCellPaintingEventArgs.uex' path='docs/doc[@for="DataGridViewCellPaintingEventArgs.PaintContent"]/*' />
        public void PaintContent(Rectangle clipBounds)
        {
            if (this.rowIndex < -1 || this.rowIndex >= this.dataGridView.Rows.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange));
            }
            if (this.columnIndex < -1 || this.columnIndex >= this.dataGridView.Columns.Count)
            {
                throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_ColumnIndexOutOfRange));
            }
            this.dataGridView.GetCellInternal(this.columnIndex, this.rowIndex).PaintInternal(this.graphics,
                                                                                             clipBounds,
                                                                                             this.cellBounds,
                                                                                             this.rowIndex,
                                                                                             this.cellState,
                                                                                             this.value,
                                                                                             this.formattedValue,
                                                                                             this.errorText,
                                                                                             this.cellStyle,
                                                                                             this.advancedBorderStyle,
                                                                                             DataGridViewPaintParts.ContentBackground | DataGridViewPaintParts.ContentForeground | DataGridViewPaintParts.ErrorIcon);
        }
 
        internal void SetProperties(Graphics graphics,
                                    Rectangle clipBounds,
                                    Rectangle cellBounds, 
                                    int rowIndex, 
                                    int columnIndex, 
                                    DataGridViewElementStates cellState,
                                    object value,
                                    object formattedValue,
                                    string errorText,
                                    DataGridViewCellStyle cellStyle,
                                    DataGridViewAdvancedBorderStyle advancedBorderStyle,
                                    DataGridViewPaintParts paintParts)
        {
            Debug.Assert(graphics != null);
            Debug.Assert(cellStyle != null);
 
            this.graphics = graphics;
            this.clipBounds = clipBounds;
            this.cellBounds = cellBounds;
            this.rowIndex = rowIndex;
            this.columnIndex = columnIndex;
            this.cellState = cellState;
            this.value = value;
            this.formattedValue = formattedValue;
            this.errorText = errorText;
            this.cellStyle = cellStyle;
            this.advancedBorderStyle = advancedBorderStyle;
            this.paintParts = paintParts;
            this.Handled = false;
        }
    }
}