Gets and sets whether this parameter is included in the Favorites list in the parameters dialog
# Get the value of the property.propertyValue = modelParameter_var.isFavorite# Set the value of the property.modelParameter_var.isFavorite = propertyValue
#include <Fusion/Fusion/ModelParameter.h>// Get the value of the property.boolean propertyValue = modelParameter_var->isFavorite();// Set the value of the property, where value_var is a boolean.bool returnValue = modelParameter_var->isFavorite(value_var);