Click or drag to resize
KaxListBoxDelete Method (IListKaxListBoxItem)
Deletes the specified list of items. Fires the Deleting and Deleted events.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual void Delete(
	IList<KaxListBoxItem> items
)

Parameters

items
Type: System.Collections.GenericIListKaxListBoxItem
The list of items which should be deleted.
Remarks
The Delete method updates the underlying datasource if the AllowAutomaticUpdates is set to true.
Examples
This example demonstrates how to programmatically delete the selected items.
KaxListBox1.Delete(KaxListBox1.SelectedItems);
See Also