Nevron Forum

Suppressing the FindWindow

https://www.nevron.com/Forum/Topic12594.aspx

By Neil Turp 1 - Monday, September 24, 2018

Hi, I need to be able to suppress the FindWindow in a NRichTextView control on Monomac/Xamarin.  Anyone know how to do it?
Neil
By Nevron Support - Tuesday, September 25, 2018

Hi Neil,
You can remove the command from the commander:

NCommandAction findCommandAction = nRichTextViewControl1.Widget.Commander.GetCommandAction(NRichTextView.FindCommand);
nRichTextViewControl1.Widget.Commander.Remove(findCommandAction);

Let us know if you meet any problems...
By Neil Turp 1 - Monday, October 1, 2018

Thanks Nevron.  Works a treat.
Neil