Enum MBNumericInputMagnitude
A helper to determine the magnitude adjustment when displaying or editing values using numeric input fields.
public enum MBNumericInputMagnitude
  Fields
BasisPoints = 4Basis 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 = 0Normal numbers requiring no adjustment.
Percent = 2Percentages 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).