Gets and sets the port used when connecting to Visual Studio Code.
# Get the value of the property.propertyValue = aPIPreferences_var.debuggingPort# Set the value of the property.aPIPreferences_var.debuggingPort = propertyValue
#include <Core/Application/APIPreferences.h>// Get the value of the property.integer propertyValue = aPIPreferences_var->debuggingPort();// Set the value of the property, where value_var is an integer.bool returnValue = aPIPreferences_var->debuggingPort(value_var);