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