Need Function GadgetItemTip$

BlitzMax Forums/MaxGUI Module/Need Function GadgetItemTip$

Grisu(Posted 2006) [#1]
Hi!

Function GadgetItemTip$( gadget:TGadget,index )
Description: Get the tooltip text of a given item in a list based gadget.

Is this possible with bmx?
Should be crossplattfrom and supported by BRL if possible.

Thanks, Grisu


jsp(Posted 2006) [#2]
Function GadgetItemTip:String(Gadget:TGadget , index:int)
Local Selected:TGadgetItem = Gadget.items[index]
Return Selected.tip
End Function


jsp


Grisu(Posted 2006) [#3]
Thanks a lot jsp. That was what I was after.