DataGridViewSortCompareEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewSortCompareEventArgs.cs / 1 / DataGridViewSortCompareEventArgs.cs

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

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

    /// 
    public class DataGridViewSortCompareEventArgs : HandledEventArgs 
    {
        private DataGridViewColumn dataGridViewColumn; 
        private object cellValue1, cellValue2; 
        private int sortResult, rowIndex1, rowIndex2;
 
        /// 
        public DataGridViewSortCompareEventArgs(DataGridViewColumn dataGridViewColumn,
            object cellValue1,
            object cellValue2, 
            int rowIndex1,
            int rowIndex2) 
        { 
            Debug.Assert(dataGridViewColumn != null);
            Debug.Assert(dataGridViewColumn.Index >= 0); 
            this.dataGridViewColumn = dataGridViewColumn;
            this.cellValue1 = cellValue1;
            this.cellValue2 = cellValue2;
            this.rowIndex1 = rowIndex1; 
            this.rowIndex2 = rowIndex2;
        } 
 
        /// 
        public object CellValue1 
        {
            get
            {
                return this.cellValue1; 
            }
        } 
 
        /// 
        public object CellValue2 
        {
            get
            {
                return this.cellValue2; 
            }
        } 
 
        /// 
        public DataGridViewColumn Column 
        {
            get
            {
                return this.dataGridViewColumn; 
            }
        } 
 
        /// 
        public int RowIndex1 
        {
            get
            {
                return this.rowIndex1; 
            }
        } 
 
        /// 
        public int RowIndex2 
        {
            get
            {
                return this.rowIndex2; 
            }
        } 
 
        /// 
        public int SortResult 
        {
            get
            {
                return this.sortResult; 
            }
            set 
            { 
                this.sortResult = 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