Kimono.KLocale.FormatNumber C# (CSharp) Method

FormatNumber() public method

public FormatNumber ( string numStr, bool round ) : string
numStr string
round bool
return string
        public string FormatNumber(string numStr, bool round)
        {
            return (string) interceptor.Invoke("formatNumber$$", "formatNumber(const QString&, bool) const", typeof(string), typeof(string), numStr, typeof(bool), round);
        }

Same methods

KLocale::FormatNumber ( double num ) : string
KLocale::FormatNumber ( double num, int precision ) : string
KLocale::FormatNumber ( string numStr ) : string
KLocale::FormatNumber ( string numStr, bool round, int precision ) : string