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