Type | Description | |||
String | A string expression that defines the HTML expression being used when control displays numbers. |
For instance the following VB sample bolds the numbers in the control:
With Edit1 .FormatNumbers = "<b> </b>" End With
Important to note is that the "<b> </b>" contains an empty space character, else the format for numbers in the control will not be updated.
The following C++ sample bolds the numbers in the control:
m_edit.SetFormatNumbers( "<b> </b>" );
The following VB.NET sample bolds the numbers in the control:
With AxEdit1 .FormatNumbers = "<b> </b>" End With
The following C# sample bolds the numbers in the control:
axEdit1.FormatNumbers = "<b> </b>";
The following VFP sample bolds the numbers in the control:
With thisform.Edit1 .FormatNumbers = "<b> </b>" endwith