Gets or sets the title displayed on the dialog.
# Get the value of the property.propertyValue = cloudFileDialog_var.title# Set the value of the property.cloudFileDialog_var.title = propertyValue
#include <Core/UserInterface/CloudFileDialog.h>// Get the value of the property.string propertyValue = cloudFileDialog_var->title();// Set the value of the property, where value_var is a string.bool returnValue = cloudFileDialog_var->title(value_var);