Hi,
I am using UltraWebListbar Version=11.1.20111.2064.
I want to get selected value of clicked item. There is no property to do this.
Please help me on this
Thanks in advance
Sorry for the late reply.
No issues now. If needed i will post the same...
hi,
Let me know if you need any additional help. Thanks
Angel
Once you handle the ItemClicked event, the WebListbarItemEvent arguments give you the item in the following way:
this is the event signature:
public delegate void ItemClickedEventHandler(object sender, WebListbarItemEvent e);
and here is how you can get the item:
Item item = e.Item;
You can retrieve the text and key of the item by doing:
string text = item.Text;
string key = item.Key;
Hope it helps. Thanks,