ColumnWidthChangingEvent.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 / ColumnWidthChangingEvent.cs / 1 / ColumnWidthChangingEvent.cs

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

namespace System.Windows.Forms { 
using System; 
using System.ComponentModel;
 
    /// 
    public class ColumnWidthChangingEventArgs : CancelEventArgs {
        int columnIndex;
        int newWidth; 

        ///  
        ///  
        ///     Creates a new ColumnWidthChanging event
        ///  
        public ColumnWidthChangingEventArgs(int columnIndex, int newWidth, bool cancel) : base (cancel) {
            this.columnIndex = columnIndex;
            this.newWidth = newWidth;
        } 

        ///  
        ///  
        ///     Creates a new ColumnWidthChanging event
        ///  
        public ColumnWidthChangingEventArgs(int columnIndex, int newWidth) : base() {
            this.columnIndex = columnIndex;
            this.newWidth = newWidth;
        } 

        ///  
        ///  
        ///     Returns the index of the column header whose width is changing
        ///  
        public int ColumnIndex {
            get {
                return this.columnIndex;
            } 
        }
 
        ///  
        /// 
        ///     Returns the new width for the column header who is changing 
        /// 
        public int NewWidth {
            get {
                return this.newWidth; 
            }
            set { 
                this.newWidth = 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