AGS.Editor.ScriptEditor.ShowFindReplaceDialog C# (CSharp) Méthode

ShowFindReplaceDialog() private méthode

private ShowFindReplaceDialog ( bool showReplace, bool showAll ) : void
showReplace bool
showAll bool
Résultat void
        private void ShowFindReplaceDialog(bool showReplace, bool showAll)
        {
            FindReplace findReplace = new FindReplace(_script, _agsEditor,
                _lastSearchText, _lastCaseSensitive);
            findReplace.LastSearchTextChanged += new FindReplace.LastSearchTextChangedHandler(findReplace_LastSearchTextChanged);
            findReplace.ShowFindReplaceDialog(showReplace, showAll);
        }