KaxListBoxReorder Method (Int32, Int32) |
Moves the item at old index to new index by calculating the offset.
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 void Reorder(
int oldIndex,
int newIndex
)
Public Sub Reorder (
oldIndex As Integer,
newIndex As Integer
)
public:
void Reorder(
int oldIndex,
int newIndex
)
member Reorder :
oldIndex : int *
newIndex : int -> unit
Parameters
- oldIndex
- Type: SystemInt32
The old (current) index of the item. - newIndex
- Type: SystemInt32
The new index of the item.
Remarks
Examples
KaxListBox1.Reorder(0, 1);
KaxListBox1.Reorder(0, 1)
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