KaxListBoxReorderToIndex Method (IListKaxListBoxItem, Int32) |
Reorders the specified items to the specified index.
Fires the
Reordering and
Reordered 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 ReorderToIndex(
IList<KaxListBoxItem> items,
int targetIndex
)
Public Overridable Sub ReorderToIndex (
items As IList(Of KaxListBoxItem),
targetIndex As Integer
)
public:
virtual void ReorderToIndex(
IList<KaxListBoxItem^>^ items,
int targetIndex
)
abstract ReorderToIndex :
items : IList<KaxListBoxItem> *
targetIndex : int -> unit
override ReorderToIndex :
items : IList<KaxListBoxItem> *
targetIndex : int -> unit
Parameters
- items
- Type: System.Collections.GenericIListKaxListBoxItem
The items. - targetIndex
- Type: SystemInt32
The target index.
Remarks
Examples
KaxListBox1.ReorderToIndex(KaxListBox1.SelectedItems, 3);
KaxListBox1.Reorder(KaxListbox1.SelectedItems, 3)
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