1 write to IndentationSize
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\LineFormattingOptions.cs (1)
26
IndentationSize
= options.GetOption(FormattingOptions2.IndentationSize, language);
5 references to IndentationSize
Microsoft.CodeAnalysis.CodeStyle (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (3)
68
var indentation = indentationLevel * options.
IndentationSize
;
119
indentation % Options.
IndentationSize
== 0;
123
var indentationLevel = indentation / Options.
IndentationSize
;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\FormattingOptions2.cs (1)
37
"indent_size", LineFormattingOptions.Default.
IndentationSize
, FormattingOptionGroups.IndentationAndSpacing, isEditorConfigOption: true)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\SyntaxFormattingOptions.cs (1)
40
public int IndentationSize => LineFormatting.
IndentationSize
;