New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Transferred

The Transferred event fires after the Deleted event. The Items collection of the listbox is updated to reflect the transferring.

The event handler receives two parameters:

  1. The instance of the listbox firing the event

  2. An event arguments parameter containing the following property:

  • Items - collection of RadListBoxItem objects which were transferred.
protected void SourceListBox_Transferred(object sender, RadListBoxTransferredEventArgs e)
{
    Label.Text += e.Items.Count.ToString() + " items are transferred";
}
Protected Sub SourceListBox_Transferred(sender As Object, e As RadListBoxTransferredEventArgs)
    Label.Text += e.Items.Count.ToString() + " items are transferred"
End Sub

See Also

In this article