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