AcManager.Tools.TextEditing.TextEditorExtension.SetAsIniEditor C# (CSharp) Méthode

SetAsIniEditor() public static méthode

public static SetAsIniEditor ( this editor, Action changedHandler ) : void
editor this
changedHandler Action
Résultat void
        public static void SetAsIniEditor(this TextEditor editor, Action<string> changedHandler) {
            editor.SyntaxHighlighting = HighlighterHolder.Get(@"Ini");
            editor.Options = new TextEditorOptions {
                AllowScrollBelowDocument = true,
                CutCopyWholeLine = true,
                EnableEmailHyperlinks = true,
                EnableHyperlinks = true,
                EnableRectangularSelection = true,
                EnableTextDragDrop = true,
                EnableVirtualSpace = false,
                HideCursorWhileTyping = false,
                HighlightCurrentLine = true,
                IndentationSize = 4,
                RequireControlModifierForHyperlinkClick = true,
                WordWrapIndentation = 20d,
                ConvertTabsToSpaces = false
            };
            // IniFoldingStrategy.Set(TextEditor);

            editor.TextChanged += (sender, args) => {
                if (_isBusy) return;
                try {
                    _isBusy = true;
                    changedHandler?.Invoke(editor.Text);
                } finally {
                    _isBusy = false;
                }
            };
        }