Set this property to return data back to the JavaScript that's associated with the HTML.
# Get the value of the property.propertyValue = hTMLEventArgs_var.returnData# Set the value of the property.hTMLEventArgs_var.returnData = propertyValue
#include <Core/UserInterface/HTMLEventArgs.h>// Get the value of the property.string propertyValue = hTMLEventArgs_var->returnData();// Set the value of the property, where value_var is a string.bool returnValue = hTMLEventArgs_var->returnData(value_var);