11 references to CreateIndentationString
Microsoft.CodeAnalysis.CSharp.Features (1)
SplitStringLiteral\StringSplitter.cs (1)
150var indentString = indent.CreateIndentationString(UseTabs, TabSize);
Microsoft.CodeAnalysis.EditorFeatures (1)
SplitComment\SplitCommentCommandHandler.cs (1)
210commentStartColumn.CreateIndentationString(options.UseTabs, options.TabSize) +
Microsoft.CodeAnalysis.Features (6)
DocumentationComments\AbstractDocumentationCommentSnippetService.cs (3)
117indentText = lineOffset.CreateIndentationString(options.UseTabs, options.TabSize); 272var indentText = lineOffset.CreateIndentationString(options.UseTabs, options.TabSize); 372return firstNonWhitespaceColumn.CreateIndentationString(options.UseTabs, options.TabSize) + ExteriorTriviaText + extraIndent;
Wrapping\BinaryExpression\BinaryExpressionCodeActionComputer.cs (1)
63.CreateIndentationString(options.FormattingOptions.UseTabs, options.FormattingOptions.TabSize)));
Wrapping\ChainedExpression\ChainedExpressionCodeActionComputer.cs (1)
88OriginalSourceText.GetOffset(firstPeriod.SpanStart).CreateIndentationString(options.FormattingOptions.UseTabs, options.FormattingOptions.TabSize)));
Wrapping\SeparatedSyntaxList\SeparatedSyntaxListCodeActionComputer.cs (1)
109var indentString = afterOpenTokenOffset.CreateIndentationString(Options.FormattingOptions.UseTabs, Options.FormattingOptions.TabSize);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
207var indentText = amountToIndent.CreateIndentationString(options.FormattingOptions.UseTabs, options.FormattingOptions.TabSize);
Microsoft.CodeAnalysis.Workspaces (2)
AbstractTriviaFormatter.cs (1)
788changes.Add(CreateWhitespace(delta.Spaces.CreateIndentationString(Options.UseTabs, Options.TabSize)));
IIndentationService.cs (1)
74var indentString = indent.CreateIndentationString(useTabs, tabSize);