Gets and sets the proxy host.
# Get the value of the property.propertyValue = networkPreferences_var.proxyPort# Set the value of the property.networkPreferences_var.proxyPort = propertyValue
#include <Core/Application/NetworkPreferences.h>// Get the value of the property.integer propertyValue = networkPreferences_var->proxyPort();// Set the value of the property, where value_var is an integer.bool returnValue = networkPreferences_var->proxyPort(value_var);