Interface ISettingsManager
- Namespace
- Npp.DotNet.Plugin.Extensions
- Assembly
- Npp.DotNet.Plugin.dll
Provides plugins with methods to read and write INI configuration files.
public interface ISettingsManager
Methods
Load(string)
Sets all writable properties of this ISettingsManager from the values in the INI file at filePath
.
void Load(string filePath = null)
Parameters
filePath
stringFull file path of an INI file.
OpenFile()
Opens the INI file of this ISettingsManager.
void OpenFile()
Remarks
Deriving classes must implement this method for themselves.
Save(string)
Dumps all writable properties of this ISettingsManager to the INI file at filePath
.
void Save(string filePath = null)
Parameters
filePath
stringFull file path of an INI file.