File: System\Windows\Forms\Controls\ListView\ColumnWidthChangingEventArgs.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.ComponentModel;
 
namespace System.Windows.Forms;
 
public class ColumnWidthChangingEventArgs : CancelEventArgs
{
    public ColumnWidthChangingEventArgs(int columnIndex, int newWidth) : this(columnIndex, newWidth, false)
    {
    }
 
    public ColumnWidthChangingEventArgs(int columnIndex, int newWidth, bool cancel) : base(cancel)
    {
        ColumnIndex = columnIndex;
        NewWidth = newWidth;
    }
 
    /// <summary>
    ///  Returns the index of the column header whose width is changing
    /// </summary>
    public int ColumnIndex { get; }
 
    /// <summary>
    ///  Returns the new width for the column header who is changing
    /// </summary>
    public int NewWidth { get; set; }
}