FlexGrid for WinForms | ComponentOne
C1.Win.FlexGrid Namespace / Row Class / Format Property

In This Topic
    Format Property (Row)
    In This Topic
    Gets or sets a string that specifies how to format the data on this column.
    Syntax
    'Declaration
     
    
    Public Property Format As String
    public string Format {get; set;}
    Remarks

    The Format property affects how values are formatted for display, not the values stored internally. To retrieve the formatted value of a cell, use the GetDataDisplay(Int32,Int32) property.

    The Format string has the same semantics as the format argument in the .NET System.String.Format(System.IFormatProvider,System.String,System.Object) method. For details and a complete set of examples, see the .NET documentation.

    See Also