Gets and sets the blue component of the color. The value can be 0 to 255.
# Get the value of the property.propertyValue = color_var.blue# Set the value of the property.color_var.blue = propertyValue
#include <Core/Application/Color.h>// Get the value of the property.short propertyValue = color_var->blue();// Set the value of the property, where value_var is a short.bool returnValue = color_var->blue(value_var);