BExplorer.Shell.ShellView.ResetFolderSettings C# (CSharp) Méthode

ResetFolderSettings() public méthode

Resets the current folder's settings by deting it from the SQLIte database
public ResetFolderSettings ( ) : void
Résultat 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