﻿---
title: max_line_length
description: Column target for reflow. off disables reflow entirely and selects preservation mode. Defaults to `off`
url: https://docs-v3-preview.elastic.dev/reference/core/max_line_length
---

# max_line_length
Column target for reflow. off disables reflow entirely and selects preservation mode.

## Values


| Value       | Notes        |
|-------------|--------------|
| `off`       |              |
| `<integer>` | Any integer. |

**Default:** `off`

### `max_line_length = off`

```ini
max_line_length = off
```

<tab-set>
  <tab-item title="Before">
    ```csharp
    using System.Text;

    namespace N;

    public class Widget
    {
        public string Build()
        {
            return new StringBuilder().Append("Hello").Append(", ").Append("World").Append("!").ToString();
        }
    }
    ```
  </tab-item>

  <tab-item title="After">
    ```csharp
    using System.Text;

    namespace N;

    public class Widget
    {
        public string Build()
        {
            return new StringBuilder().Append("Hello").Append(", ").Append("World").Append("!").ToString();
        }
    }
    ```
  </tab-item>
</tab-set>