Kimono.KLocale.SetCountry C# (CSharp) Method

SetCountry() public method

Changes the current country. The current country will be left unchanged if failed. It will force a reload of the country specific configuration. name="country" The ISO 3166 country code.
public SetCountry ( string country, Kimono.KConfig config ) : bool
country string
config Kimono.KConfig
return bool
        public bool SetCountry(string country, KConfig config)
        {
            return (bool) interceptor.Invoke("setCountry$#", "setCountry(const QString&, KConfig*)", typeof(bool), typeof(string), country, typeof(KConfig), config);
        }