KaxListBoxDelete Method (IListKaxListBoxItem) |
Deletes the specified list of items. Fires the
Deleting and
Deleted events.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic virtual void Delete(
IList<KaxListBoxItem> items
)
Public Overridable Sub Delete (
items As IList(Of KaxListBoxItem)
)
public:
virtual void Delete(
IList<KaxListBoxItem^>^ items
)
abstract Delete :
items : IList<KaxListBoxItem> -> unit
override Delete :
items : IList<KaxListBoxItem> -> unit
Parameters
- items
- Type: System.Collections.GenericIListKaxListBoxItem
The list of items which should be deleted.
Remarks
Examples
This example demonstrates how to programmatically delete the selected items.
KaxListBox1.Delete(KaxListBox1.SelectedItems);
KaxListBox1.Delete(KaxListBox1.SelectedItems)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also