Automatic numbering of field and record headers.
Usage
Set_Property(OLECtrlEntID, "OLE.AutoNumbers", Array)
Values
Array has the following structure:
| Pos | Name | Type | Description | Default |
|---|---|---|---|---|
| <1> | Header Column | |||
| <1, 1> | Style | Option | The auto numbering style. See remarks for a list of options. | None |
| <1, 2> | Starting Value | Integer | The value from which the auto numbering sequence begins. Valid starting values depend on the style and are documented in the Remarks. | 0 |
| <2> | Header Row | |||
| <2, 1> | Style | Option | The auto numbering style. See remarks for a list of options. | None |
| <2, 2> | Starting Value | Integer | The value from which the auto numbering sequence begins. Valid starting values depend on the style and are documented in the Remarks. | 0 |
Remarks
The AutoNumbers property automatically labels the header row and/or header column with incrementing numbers or letters. Auto numbering always increments positively, i.e., there is no support for counting backwards.
Possible auto numbering styles are:
| Value | Abbr. | Description |
|---|---|---|
| None | N | Auto numbering disabled |
| Integer | I | Numbers. Starting value can be any positive or negative number. |
| Letter | L | Letters. Starting value is ignored and always starts with 'A'. |
| Roman | R | Roman numerals. Starting value must be greater than or equal to 1. |