Skip to content

TSingleHelper.ToString

Convert a single-sized floating point value to a string

Declaration

Source position: syshelph.inc line 232

public 
  class function ToString(const AValue: Single) : string;  Overload
                         ;  Static;
  class function ToString(const AValue: Single; 
                         const AFormatSettings: TFormatSettings) : string
                         ;  Overload;  Static;
  class function ToString(const AValue: Single; 
                         const AFormat: TFloatFormat; 
                         const APrecision: Integer; 
                         const ADigits: Integer) : string;  Overload
                         ;  Static;
  class function ToString(const AValue: Single; 
                         const AFormat: TFloatFormat; 
                         const APrecision: Integer; 
                         const ADigits: Integer; 
                         const AFormatSettings: TFormatSettings) : string
                         ;  Overload;  Static;
  function ToString(const AFormat: TFloatFormat; 
                   const APrecision: Integer; const ADigits: Integer)
                    : string;  Overload;
  function ToString(const AFormat: TFloatFormat; 
                   const APrecision: Integer; const ADigits: Integer; 
                   const AFormatSettings: TFormatSettings) : string
                   ;  Overload;
  function ToString(const AFormatSettings: TFormatSettings) : string
                   ;  Overload;
  function ToString : string;  Overload;

Description

ToString will convert AValue (or Self in the plain method version) to a string. Optionally FormatSettings can be specified, to be able to specify the decimal separator character to use.

Additionally, a precision APrecision and number of digits ADigits can be specified, in conjunction with a AFormat parameter to specify the form in which the floating-point value must be represented. (see TFloatFormat for an explanation of the various values). In this case, FloatToStrF is used to format the value. In the absence of these parameters, FloatToStr is called.

See also

Name Description
FloatToStr Convert a float value to a string using a fixed format.
FloatToStrF Convert a float value to a string using a given format.
TFloatFormat Formats for the FloatToText function.