/// <summary> /// removes the Setting at the given index from the SettingsCollection /// </summary> /// <param name="index">the index of the desired Setting to be removed from the SettingsCollection</param> public SettingsCollection RemoveAt(int index) { SettingsList.RemoveAt(index); return(this); }
public void RemoveSetting(object parameter) { SettingsList.RemoveAt(SelectedSettingIndex); }