5 references to GetIndentationSize
Microsoft.CodeAnalysis.Razor.Workspaces (5)
CodeActions\Razor\GenerateEventHandlerCodeActionResolver.cs (1)
66var baseIndentation = text.Lines[classLocationLineSpan.StartLinePosition.Line].GetIndentationSize(options.TabSize) + options.TabSize;
DocumentMapping\RazorEditService_Methods.cs (1)
168var currentIndentation = line.GetIndentationSize(options.TabSize);
Formatting\FormattingContext.cs (1)
85var existingIndentationSize = line.GetIndentationSize(Options.TabSize);
Formatting\FormattingUtilities.cs (1)
448var indentationWidth = formattedLine.GetIndentationSize(context.Options.TabSize) + fixedIndentationWidth;
Formatting\SnippetFormatter.cs (1)
41var csharpLineIndentationSize = line.GetIndentationSize(formattingContext.Options.TabSize);