BaconographyPortable.ViewModel.ReplyViewModel.AddStrikeImpl C# (CSharp) Method

AddStrikeImpl() private method

private AddStrikeImpl ( ) : void
return void
        private void AddStrikeImpl()
        {
            var surroundedTextTpl = SurroundSelection(SelectionStart, SelectionStart + SelectionLength, ReplyBody, _strikeFormattingString);
            ReplyBody = surroundedTextTpl.Item3;
            SelectionStart = surroundedTextTpl.Item1;
            SelectionLength = surroundedTextTpl.Item2 - surroundedTextTpl.Item1;
        }