Chokanbar.Model.MarkingSelectorViewModel.ReplaceAll C# (CSharp) Method

ReplaceAll() public method

public ReplaceAll ( string moveText ) : void
moveText string
return void
        public void ReplaceAll(string moveText)
        {
            EventAggregator.OnReplaceWordEvent(this, new ReplaceWordEventArgs()
            {
                replaceAll = true,
                fromStr = moveText,
                toStr = _view.ReplaceToTextBox.Text
            });
        }