Gets and sets if the layout grid lock is enabled.
# Get the value of the property.propertyValue = gridPreferences_var.isLayoutGridLockEnabled# Set the value of the property.gridPreferences_var.isLayoutGridLockEnabled = propertyValue
#include <Core/Application/GridPreferences.h>// Get the value of the property.boolean propertyValue = gridPreferences_var->isLayoutGridLockEnabled();// Set the value of the property, where value_var is a boolean.bool returnValue = gridPreferences_var->isLayoutGridLockEnabled(value_var);