LabelEditEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the BeforeLabelEdit and AfterLabelEdit events.
- C#
- VB.NET
public class LabelEditEventArgs : EventArgs
Public Class LabelEditEventArgs
Inherits EventArgs
Constructors
LabelEditEventArgs(item)
Initializes a new instance of the LabelEditEventArgs class with the specified index to the ListViewItem to edit or edited.
| Name | Type | Description |
|---|---|---|
| item | ListViewItem | The ListViewItem, containing the label to edit. |
LabelEditEventArgs(item, label)
Initializes a new instance of the LabelEditEventArgs class with the specified index to the ListViewItem being edited and the new text for the label of the ListViewItem.
| Name | Type | Description |
|---|---|---|
| item | ListViewItem | The ListViewItem, containing the label to edit. |
| label | String | The new text assigned to the label of the ListViewItem. |
Properties
CancelEdit
Boolean: Returns or sets whether changes made to the label of the ListViewItem should be canceled.
Item
ListViewItem: Returns the ListViewItem containing the label to edit or edited.
Label
String: Returns the new text assigned to the label of the ListViewItem.
Used By
| Name | Description |
|---|---|
| LabelEditEventHandler | Represents the method that handles the BeforeLabelEdit and AfterLabelEdit events. |