# ItemCheckedEventArgs

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Provides data for the [ItemChecked](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#itemchecked) event of the [ListView](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview) control.

{% tabs %}
{% tab title="C#" %}

```csharp
public class ItemCheckedEventArgs : EventArgs
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Class ItemCheckedEventArgs
    Inherits EventArgs
```

{% endtab %}
{% endtabs %}

## Constructors

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) ItemCheckedEventArgs(item)

Initializes a new instance of the [ItemCheckedEventArgs](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.itemcheckedeventargs) class.

| Name     | Type                                                                                                 | Description                                                                                                                                  |
| -------- | ---------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| **item** | [ListViewItem](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.listviewitem) | The [ListViewItem](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.listviewitem) that is being checked or unchecked. |

## Properties

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Item

[ListViewItem](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.listviewitem): Returns the [ListViewItem](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.listviewitem) whose checked state is changing.

## Used By

| Name                                                                                                                       | Description                                                                                                                                                                                                                          |
| -------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [ItemCheckedEventHandler](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.itemcheckedeventhandler) | Represents the method that will handle the [ItemChecked](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#itemchecked) event of a [ListView](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview) control. |
