AutoWikiBrowser.MainForm.EditToolBarAction C# (CSharp) Метод

EditToolBarAction() приватный Метод

Applies EditToolBar button action
private EditToolBarAction ( string noSelection, int selectionStartOffset, int selectionLength, string selectionBeforeAfter ) : void
noSelection string String to display if no text already select
selectionStartOffset int Start position to highlight from end of noSelection
selectionLength int Length of selection of text to replace
selectionBeforeAfter string String if there is a selection to display before and after selected text
Результат void
        private void EditToolBarAction(string noSelection, int selectionStartOffset, int selectionLength,
                                       string selectionBeforeAfter)
        {
            EditToolBarAction(noSelection, selectionStartOffset, selectionLength, selectionBeforeAfter, selectionBeforeAfter);
        }

Same methods

MainForm::EditToolBarAction ( string noSelection, int selectionStartOffset, int selectionLength, string selectionBefore, string selectionAfter ) : void
MainForm