###Function###
IniDelete

###Description###
Deletes a value from a standard format .ini file.

###Syntax###
IniDelete ( "filename", "section" [, "key"] )


###Parameters###
@@ParamTable@@
filename
	The filename of the .ini file.
section
	The section name in the .ini file.
key
	[optional] The key name in the .ini file to delete.  If the key name is not given the entire section is deleted.  The Default keyword may also be used which will cause the section to be deleted.
@@End@@


###ReturnValue###
@@ReturnTable@@
Success:	Returns 1.
Failure:	Returns 0 if the INI file does not exist or if the file is read-only.
@@End@@


###Remarks###
A standard ini file looks like:
<i>[SectionName]
Key=Value</i>


###Related###
IniRead, IniWrite, IniReadSection, IniReadSectionNames, IniRenameSection, IniWriteSection


###Example###
@@IncludeExample@@
