> For the complete documentation index, see [llms.txt](https://wfsys.gitbook.io/workflow-forms-syntax/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/objects/databasetable/column/column_numeric_box.md).

# ColumnNumericBox

## Шаблон DatabaseTableColumnNumericBox <a href="#template_databasetable" id="template_databasetable"></a>

Перечень всех возможных тэгов столбца:

```xml
<Column Name="" Type="DatabaseTableColumnNumericBox" Assembly="DatabaseTableColumnControls" >
  <!--Тэги, общие для всех типов столбцов-->
  <Title></Title>
  <Width></Width>
  <MinimumWidth></MinimumWidth>
  <DisplayIndex></DisplayIndex>
  <Frozen Value="" />
  <WrapMode Value="" />
  <ReadOnly></ReadOnly> 
  <AllowSort Value="" />
  <Alignment Value="" />
  <HeaderAlignment Value="" />
  <AutoSizeMode Value="" />
  <HeaderBackColor></HeaderBackColor>
  <HeaderForeColor></HeaderForeColor>
  <BackColor></BackColor>
  <ForeColor></ForeColor>
  <Visible></Visible>
  <Hint></Hint>
  <DataType DataType="" />
  <Substitution SourceColumn="">
    <DataConnection SourceDataConnection="">
      <Fields>
        <Field Name="" />
        <Field Name="" />
      </Fields>
    </DataConnection>
  </Substitution>
  <Sorting>
    <SortOrder Type="" />
    <ColumnOrder Order="" />
  </Sorting>
  <Filter AutoFill="" FilterNullValue=""></Filter>
  <DefaultNewRowValue></DefaultNewRowValue>
  <AutoFill Type="" />
  <Calculate>
    <Expression></Expression>
    <Items>
      <Item></Item>
      <Item></Item>
    </Items>
  </Calculate>
  <ManagementMode></ManagementMode>
  <!--Тэги, специфичные для DatabaseTableColumnNumericBox-->
  <Increment Value="" />
  <Maximum Value="" />
  <Minimum Value="" />
  <DecimalPlaces Value="" />
  <ThousandsSeparator Value="" />
</Column>
```

{% hint style="info" %}
Тэги, общие для всех типов столбцов описаны в статье [Column](/workflow-forms-syntax/workflow_forms/objects/databasetable/column.md).
{% endhint %}

## Тэги, специфичные для столбцов типа DatabaseTableColumnNumericBox <a href="#column_combo_box_tags" id="column_combo_box_tags"></a>

### Increment <a href="#column_increment" id="column_increment"></a>

Число, на которое будет изменяться значение поля.

```xml
<Increment Value="1" />
```

Необязательный тэг. Значение тэга не ожидается.&#x20;

Обязательный атрибут `Value` ожидает числовое значение. По умолчанию используется значение 1.

### Maximum <a href="#column_maximum" id="column_maximum"></a>

Максимальное допустимое число для ввода.&#x20;

```xml
<Maximum Value="100" />
```

Необязательный тэг. Значение тэга не ожидается.&#x20;

Обязательный атрибут `Value` ожидает числовое значение. По умолчанию используется значение 100.

### Minimum <a href="#column_minimum" id="column_minimum"></a>

Минимальное допустимое число для ввода.

```xml
<Minimum Value="0" />
```

Необязательный тэг. Значение тэга не ожидается.&#x20;

Обязательный атрибут `Value` ожидает числовое значение. По умолчанию используется значение 0.

### DecimalPlaces <a href="#column_decimal_places" id="column_decimal_places"></a>

Количество знаков дробной части числа.&#x20;

```xml
<DecimalPlaces Value="0" />
```

Необязательный тэг. Значение тэга не ожидается.&#x20;

Обязательный атрибут `Value` ожидает неотрицательное целочисленное значение. По умолчанию используется значение 0.

### ThousandsSeparator <a href="#column_thousands_separator" id="column_thousands_separator"></a>

Признак, показывающий, отображается ли разделитель групп разрядов.&#x20;

```xml
<ThousandsSeparator Value="False" />
```

Необязательный тэг. Значение тэга не ожидается.&#x20;

Обязательный атрибут `Value` ожидает логическое значение. По умолчанию используется значение False.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/objects/databasetable/column/column_numeric_box.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
