Version

Using Display Factor in WebNumericEditor

WebNumericEditor™ allows you to set a factor that multiplies the value in the control and displays it as the text in the editor. For example, if the display factor is 100 and the end-user enters the value 80 into the editor (this is reflected in the editor’s Text property) then the editor’s Value property will be 0.8. You can set the display factor by simply setting the control’s DisplayFactor property. By default, this property is set to 1.

In Visual Basic:

WebNumericEditor1.DisplayFactor = 10

In C#:

WebNumericEditor1.DisplayFactor = 10;