How do I detect I'm in find mode?

Hi all,

I’m in smart client 6.1.4. Is there a way of programmatically detect that the user is in Find mode?

C

This should do the trick:

forms.myForm.foundset.isInFind()

Mind this is a per foundset check

Hi swingman ,

If you are using foundset to check user is in find mode then you can use foundset.isInFindMode() as @mboegem suggested . Is it so ?

Thanks
Chaitanya s

mboegem:
This should do the trick:

forms.myForm.foundset.isInFind()

Mind this is a per foundset check

Yes that will work fine. Thanks.