| File: System\Windows\Forms\ItemCheckEventArgs.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\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. namespace System.Windows.Forms; /// <summary> /// Provides data for the <see cref="CheckedListBox.ItemCheck"/> event. /// </summary> public class ItemCheckEventArgs : EventArgs { public ItemCheckEventArgs(int index, CheckState newCheckValue, CheckState currentValue) { Index = index; NewValue = newCheckValue; CurrentValue = currentValue; } /// <summary> /// The index of the item that is about to change. /// </summary> public int Index { get; } /// <summary> /// The proposed new value of the CheckBox. /// </summary> public CheckState NewValue { get; set; } /// <summary> /// The current state of the CheckBox. /// </summary> public CheckState CurrentValue { get; } }