Skip to main content
Version: 4.1

ItemCheckEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the ItemCheck event of the CheckedListBox and ListView controls.

public class ItemCheckEventArgs : EventArgs

Constructors

Instance member ItemCheckEventArgs(index, newCheckValue, currentValue)

Initializes a new instance of the ItemCheckEventArgs class.

NameTypeDescription
indexInt32The zero-based index of the item to change.
newCheckValueCheckStateOne of the CheckState values that indicates whether to change the check box for the item to be checked, unchecked, or indeterminate.
currentValueCheckStateOne of the CheckState values that indicates whether the check box for the item is currently checked, unchecked, or indeterminate.

Properties

Instance member CurrentValue

CheckState: Returns a value indicating the current state of the item's check box.

Instance member Index

Int32: Returns the zero-based index of the item to change.

Instance member NewValue

CheckState: Returns or sets whether to set the check box for the item to be checked, unchecked, or indeterminate.

Used By

NameDescription
ItemCheckEventHandlerRepresents the method that will handle the ItemCheck event of a CheckedListBox or ListView control.