IniDelete()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

IniDelete()

Mfunc.IniDelete(Filename, Section [, Key])

Mfunc.IniDelete(Filename, Section [, Key])

Deletes a value from a standard format .ini file.

Parameters

Filename

The name of the .ini file, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified.

Section

The section name in the .ini file, which is the heading phrase that appears in square brackets (do not include the brackets in this parameter).

Key

The key name in the .ini file. If omitted, the entire Section will be deleted.

Throws

Throws MfException throw any errors with InnerException set to the Autohotkey - IniDelete error message.
Throws MfException any other general error occurs.

Remarks

A standard ini file looks like:

[SectionName]
Key=Value

Any and/or all parameter for this function can be instance of MfString or var containing string.

Wrapper for AutoHotkey Docs - IniDelete.
Static method.

See Also:AutoHotkey Docs - IniDelete.

Example

Mfunc.IniDelete("C:\Temp\myfile.ini", "section2", "key")