ListView.CreateInsertItem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.