DataGridViewCellValueEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellValueEventArgs.cs / 1 / DataGridViewCellValueEventArgs.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Windows.Forms 
{ 
    using System;
    using System.Diagnostics; 

    /// 
    public class DataGridViewCellValueEventArgs : EventArgs
    { 
        private int rowIndex, columnIndex;
        private object val; 
 
        internal DataGridViewCellValueEventArgs()
        { 
            this.columnIndex = this.rowIndex = -1;
        }

        ///  
        public DataGridViewCellValueEventArgs(int columnIndex, int rowIndex)
        { 
            if (columnIndex < 0) 
            {
                throw new ArgumentOutOfRangeException("columnIndex"); 
            }
            if (rowIndex < 0)
            {
                throw new ArgumentOutOfRangeException("rowIndex"); 
            }
            this.rowIndex = rowIndex; 
            this.columnIndex = columnIndex; 
        }
 
        /// 
        public int ColumnIndex
        {
            get 
            {
                return this.columnIndex; 
            } 
        }
 
        /// 
        public int RowIndex
        {
            get 
            {
                return this.rowIndex; 
            } 
        }
 
        /// 
        public object Value
        {
            get 
            {
                return this.val; 
            } 
            set
            { 
                this.val = value;
            }
        }
 
        internal void SetProperties(int columnIndex, int rowIndex, object value)
        { 
            Debug.Assert(columnIndex >= -1); 
            Debug.Assert(rowIndex >= -1);
            this.columnIndex = columnIndex; 
            this.rowIndex = rowIndex;
            this.val = value;
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK