Gets and sets if the file is automatically saved on close.
# Get the value of the property.propertyValue = generalPreferences_var.isAutomaticSaveOnCloseEnabled# Set the value of the property.generalPreferences_var.isAutomaticSaveOnCloseEnabled = propertyValue
#include <Core/Application/GeneralPreferences.h>// Get the value of the property.boolean propertyValue = generalPreferences_var->isAutomaticSaveOnCloseEnabled();// Set the value of the property, where value_var is a boolean.bool returnValue = generalPreferences_var->isAutomaticSaveOnCloseEnabled(value_var);