Public Function DeleteSetting( _ ByVal sectionName As String, _ ByVal settingName As String, _ ByVal filePath As String _ ) As Boolean
Dim instance As IniReaderWriter Dim sectionName As String Dim settingName As String Dim filePath As String Dim value As Boolean value = instance.DeleteSetting(sectionName, settingName, filePath)
public bool DeleteSetting( string sectionName, string settingName, string filePath )
public: bool DeleteSetting( String^ sectionName, String^ settingName, String^ filePath )
Parameters
- sectionName
- The name of the section. Use GLOBAL for the global section.
- settingName
- The name of the setting
- filePath
- The path to the INI file
Return Value
True if the setting was deleted