The URL that is being navigated to.
# Get the value of the property.propertyValue = navigationEventArgs_var.navigationURL# Set the value of the property.navigationEventArgs_var.navigationURL = propertyValue
#include <Core/UserInterface/NavigationEventArgs.h>// Get the value of the property.string propertyValue = navigationEventArgs_var->navigationURL();// Set the value of the property, where value_var is a string.bool returnValue = navigationEventArgs_var->navigationURL(value_var);