BExplorer.Shell.ShellView.ResetFolderSettings C# (CSharp) Method

ResetFolderSettings() public method

Resets the current folder's settings by deting it from the SQLIte database
public ResetFolderSettings ( ) : void
return void
    public void ResetFolderSettings() {
      var m_dbConnection = new SQLite.SQLiteConnection("Data Source=" + this._DBPath + ";Version=3;");
      m_dbConnection.Open();
      new SQLite.SQLiteCommand("DELETE FROM foldersettings", m_dbConnection).ExecuteNonQuery();
    }
ShellView