Kimono.KLocale.FormatDateTime C# (CSharp) Method

FormatDateTime() public method

Returns a string formatted to the current locale's conventions regarding both date and time. name="dateTime" the date and time to be formatted name="format" category of date format to use name="options" additional output options
public FormatDateTime ( Qyoto.QDateTime dateTime, KLocale format, bool includeSecs ) : string
dateTime Qyoto.QDateTime
format KLocale
includeSecs bool
return string
        public string FormatDateTime(QDateTime dateTime, KLocale.DateFormat format, bool includeSecs)
        {
            return (string) interceptor.Invoke("formatDateTime#$$", "formatDateTime(const QDateTime&, KLocale::DateFormat, bool) const", typeof(string), typeof(QDateTime), dateTime, typeof(KLocale.DateFormat), format, typeof(bool), includeSecs);
        }

Same methods

KLocale::FormatDateTime ( KDateTime dateTime ) : string
KLocale::FormatDateTime ( KDateTime dateTime, KLocale format ) : string
KLocale::FormatDateTime ( KDateTime dateTime, KLocale format, uint options ) : string
KLocale::FormatDateTime ( Qyoto.QDateTime dateTime ) : string
KLocale::FormatDateTime ( Qyoto.QDateTime dateTime, KLocale format ) : string