Example #1
0
 /// <remarks>
 ///  Set one of the predefined "basic" settings.
 /// <param> name="s" the setting to set
 /// </param><param> name="v" the new value of the setting, or string() to 
 ///          unset
 /// </param></remarks>        <short>    Set one of the predefined "basic" settings.</short>
 public void SetSetting(KEMailSettings.Setting s, string v)
 {
     interceptor.Invoke("setSetting$$", "setSetting(KEMailSettings::Setting, const QString&)", typeof(void), typeof(KEMailSettings.Setting), s, typeof(string), v);
 }
Example #2
0
 /// <remarks>
 ///  Get one of the predefined "basic" settings.
 /// <param> name="s" the setting to get
 /// </param></remarks>        <return> the value of the setting, or string() if not 
 ///          set
 /// </return>
 ///         <short>    Get one of the predefined "basic" settings.</short>
 public string GetSetting(KEMailSettings.Setting s)
 {
     return (string) interceptor.Invoke("getSetting$", "getSetting(KEMailSettings::Setting) const", typeof(string), typeof(KEMailSettings.Setting), s);
 }