Controls if the canvas will be rendered when ray tracing within the Render workspace.
# Get the value of the property.propertyValue = canvas_var.isRenderable# Set the value of the property.canvas_var.isRenderable = propertyValue
#include <Fusion/Image/Canvas.h>// Get the value of the property.boolean propertyValue = canvas_var->isRenderable();// Set the value of the property, where value_var is a boolean.bool returnValue = canvas_var->isRenderable(value_var);