Gets and sets if accelerated data transfer is enabled.
# Get the value of the property.propertyValue = compatibilityPreferences_var.isAcceleratedDataTransfer# Set the value of the property.compatibilityPreferences_var.isAcceleratedDataTransfer = propertyValue
#include <Core/Application/CompatibilityPreferences.h>// Get the value of the property.boolean propertyValue = compatibilityPreferences_var->isAcceleratedDataTransfer();// Set the value of the property, where value_var is a boolean.bool returnValue = compatibilityPreferences_var->isAcceleratedDataTransfer(value_var);