Enum MBNumericInputMagnitude
A helper to determine the magnitude adjustment when displaying or editing values using numeric input fields.
public enum MBNumericInputMagnitude
Fields
BasisPoints = 4
Basis points where the numeric input needs to multiply the value by 10 000 when displaying or editing (formatted display is not handled by standard percent C# formatting which lacks support for basis points).
Normal = 0
Normal numbers requiring no adjustment.
Percent = 2
Percentages where the numeric input needs to multiply the value by 100 when displaying or editing (formatted display can be handled by standard percent C# formatting).