Kimono.KFind.FindNextDialog C# (CSharp) Method

FindNextDialog() public method

Return (or create) the dialog that shows the "find next?" prompt. Usually you don't need to call this. One case where it can be useful, is when the user selects the "Find" menu item while a find operation is under way. In that case, the program may want to call setActiveWindow() on that dialog.
public FindNextDialog ( bool create ) : Kimono.KDialog
create bool
return Kimono.KDialog
        public KDialog FindNextDialog(bool create)
        {
            return (KDialog) interceptor.Invoke("findNextDialog$", "findNextDialog(bool)", typeof(KDialog), typeof(bool), create);
        }

Same methods

KFind::FindNextDialog ( ) : Kimono.KDialog