Ribbon for WinForms | ComponentOne
C1.Win.Ribbon Namespace / RibbonNumberFormat Enumeration

In This Topic
    RibbonNumberFormat Enumeration
    In This Topic
    Selects a standard format pattern for the RibbonNumericBox.
    Syntax
    'Declaration
     
    
    Public Enum RibbonNumberFormat 
       Inherits System.Enum
    public enum RibbonNumberFormat : System.Enum 
    Members
    MemberDescription
    CurrencyThe number is converted to a string that represents a currency amount.
    CustomThe number is converted to a string using the custom format pattern.
    DecimalThe number is converted to a string of decimal digits (0-9), prefixed by a minus sign if the number is negative.
    FixedPointThe number is converted to a string of the form "-ddddd.ddd…".
    GeneralThe number is converted to the most compact of either fixed-point or scientific notation.
    HexadecimalThe number is converted to a string of hexadecimal digits.
    NumberThe number is converted to a string of the form "-d,ddd,ddd.ddddd…".
    PercentThe number is converted to a string that represents a percent.
    ScientificThe number is converted to exponential format, such as "-1.234e+15".
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.Ribbon.RibbonNumberFormat

    See Also