LabelEditEventArgs::Item Property

 

Gets the zero-based index of the ListViewItem containing the label to edit.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property int Item {
	int get();
}

Property Value

Type: System::Int32

The zero-based index of the ListViewItem.

The following code example demonstrates handling the ListView::BeforeLabelEdit event and using the Item and CancelEdit properties. To run the example, paste the following code in a form containing a ListView control named ListView1 and populated with at least 3 items. Ensure all events are associated with their event-handling methods.

void ListView1_BeforeLabelEdit( Object^ sender,
   System::Windows::Forms::LabelEditEventArgs^ e )
{
   // Allow all but the first two items of the list to 
   // be modified by the user.
   if ( e->Item < 2 )
   {
      e->CancelEdit = true;
   }
}

.NET Framework
Available since 1.1
Return to top
Show: