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