ListView.CreateInsertItem Method

Definition

Creates an insert item in the ListView control.

protected:
 virtual System::Web::UI::WebControls::ListViewItem ^ CreateInsertItem();
protected virtual System.Web.UI.WebControls.ListViewItem CreateInsertItem ();
abstract member CreateInsertItem : unit -> System.Web.UI.WebControls.ListViewItem
override this.CreateInsertItem : unit -> System.Web.UI.WebControls.ListViewItem
Protected Overridable Function CreateInsertItem () As ListViewItem

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

See also