ListView.CreateInsertItem Method

Definition

Creates an insert item in the ListView control.

C#
protected virtual System.Web.UI.WebControls.ListViewItem CreateInsertItem();

Returns

The insert item that was created.

Exceptions

The ListView control does not have an InsertItemTemplate template specified.

Remarks

The CreateInsertItem method is a helper method that is called by the ListView control to create an insert item. An insert item is a ListViewItem object whose ItemType is equal to ListViewItemType.InsertItem.

Note

This method is primarily used by control developers to extend the ListView control.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also