Gets and sets if high DPI scaling is used.
# Get the value of the property.propertyValue = compatibilityPreferences_var.isHighDPIScaling# Set the value of the property.compatibilityPreferences_var.isHighDPIScaling = propertyValue
#include <Core/Application/CompatibilityPreferences.h>// Get the value of the property.boolean propertyValue = compatibilityPreferences_var->isHighDPIScaling();// Set the value of the property, where value_var is a boolean.bool returnValue = compatibilityPreferences_var->isHighDPIScaling(value_var);