\
ComponentOne List for WinForms
Data Presentation Techniques / Text Formatting / Numeric Field Formatting
In This Topic
    Numeric Field Formatting
    In This Topic

    List for WinForms supports a variety of data formatting options through the C1DataColumn object's NumberFormat property. NumberFormat reconfigures the data format that is handed to the list from the database. It can alter most types of numeric values for a particular column. For example, to display all date values within a column according to the form 26-Apr-01, you would use the Medium Date setting:

    To write code in Visual Basic

    Visual Basic
    Copy Code
    Me.C1List1.Columns("HireDate").NumberFormat = "Medium Date"
    

    To write code in C#

    C#
    Copy Code
    this.c1List1.Columns["HireDate"].NumberFormat = "Medium Date";
    

    Note that if you change the NumberFormat property of a column at run time, you do not need to refresh the display, as List for WinForms handles this automatically.

    For numeric data, the following predefined options are available:

    Formatting Option Description
    Standard Display number with thousands separator, at least one digit to the left and two digits to the right of the decimal separator.
    General Number Display number as is, with no thousand separators.
    Currency Display number with thousand separator, if appropriate; display two digits to the right of the decimal separator. Note that output is based on system local settings.
    Percent Display number multiplied by 100 with a percent sign (%) appended to the right; always display two digits to the right of the decimal separator.
    Fixed Display at least one digit to the left and two digits to the right of the decimal separator.
    Scientific Use standard scientific notation.
    Yes/No Display No if number is 0; otherwise, display Yes.
    True/False Display False if number is 0; otherwise, display True.
    On/Off Display Off if number is 0; otherwise, display On.
    0% Display number multiplied by 100, then rounded to the nearest integer, with a percent sign (%) appended to the right.
    0.00% Same as Percent.

    For date and time data, the following predefined options are available:

    Formatting Option Description
    General Date Display a date and/or time. For real numbers, display a date and time (for example, 4/3/93 05:34 PM); if there is no fractional part, display only a date (for example, 4/3/93); if there is no integer part, display only a time (for example, 05:34 PM). Date display is determined by your system settings.
    Long Date Display a date using your system's long date format.
    Medium Date Display a date using the medium date format appropriate for the language version of Visual Studio.
    Short Date Display a date using your system's short date format.
    Long Time Display a time using your system's long time format: includes hours, minutes, seconds.
    Medium Time Display a time in 12-hour format using hours and minutes and the AM/PM designator.
    Short Time Display a time using the 24-hour format (for example, 17:45).