Skip to content

Files

Latest commit

fb5545b · Mar 1, 2019

History

History
48 lines (32 loc) · 1.21 KB

Access.ComboBox.NumeralShapes.md

File metadata and controls

48 lines (32 loc) · 1.21 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date localization_priority
ComboBox.NumeralShapes property (Access)
vbaac10.chm11467
vbaac10.chm11467
access
Access.ComboBox.NumeralShapes
93cb42d2-6274-3af4-0801-87ecf8eb4252
03/02/2019
Normal

ComboBox.NumeralShapes property (Access)

Syntax

expression.NumeralShapes

expression A variable that represents a ComboBox object.

Remarks

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.

Example

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]