6 references to DeleteText
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\AbstractToggleBlockCommentBase.cs (2)
261DeleteText(textChanges, new TextSpan(spanToRemove.Start, commentInfo.BlockCommentStartString.Length)); 267DeleteText(textChanges, new TextSpan(endMarkerPosition, commentInfo.BlockCommentEndString.Length));
CommentSelection\CommentUncommentSelectionCommandHandler.cs (3)
266DeleteText(textChanges, new TextSpan(positionOfStart, info.BlockCommentStartString.Length)); 267DeleteText(textChanges, new TextSpan(positionOfEnd, info.BlockCommentEndString.Length)); 283DeleteText(textChanges, new TextSpan(line.Start.Position + lineText.IndexOf(info.SingleLineCommentString, StringComparison.Ordinal), info.SingleLineCommentString.Length));
CommentSelection\ToggleLineCommentCommandHandler.cs (1)
128DeleteText(textChanges, spanToRemove);