Gets and sets the title of the progress dialog
# Get the value of the property.propertyValue = progressDialog_var.title# Set the value of the property.progressDialog_var.title = propertyValue
#include <Core/UserInterface/ProgressDialog.h>// Get the value of the property.string propertyValue = progressDialog_var->title();// Set the value of the property, where value_var is a string.bool returnValue = progressDialog_var->title(value_var);