| title | keywords | f1_keywords | ms.prod | api_name | ms.assetid | ms.date | localization_priority | ||
|---|---|---|---|---|---|---|---|---|---|
ComboBox.NumeralShapes property (Access) |
vbaac10.chm11467 |
|
access |
|
93cb42d2-6274-3af4-0801-87ecf8eb4252 |
03/02/2019 |
Normal |
expression.NumeralShapes
expression A variable that represents a ComboBox object.
The NumeralShapes property uses the following settings.
| Setting | Visual Basic | Description |
|---|---|---|
| System | 0 | Numeral shapes are determined by the Numeral Shapes system setting. |
| Arabic | 1 | Arabic digit shapes are used to display and print numerals. |
| National | 2 | National digit shapes are used to display and print numerals. |
| Context | 3 | Numeral shapes are determined by Unicode context rules for adjacent text. |
The following example changes the NumeralShapes property for the selected control to 0 (numeral shapes will be determined by the Numeral Shapes system setting).
Public Sub ChangeNumeralShapes(ctl As Control)
ctl.NumeralShapes = 0
End Sub[!includeSupport and feedback]