Gets and sets if in command tips and tricks are shown.
# Get the value of the property.propertyValue = generalPreferences_var.areTipsAndTricksShown# Set the value of the property.generalPreferences_var.areTipsAndTricksShown = propertyValue
#include <Core/Application/GeneralPreferences.h>// Get the value of the property.boolean propertyValue = generalPreferences_var->areTipsAndTricksShown();// Set the value of the property, where value_var is a boolean.bool returnValue = generalPreferences_var->areTipsAndTricksShown(value_var);