Controls if the canvas is selectable or not within the graphics window.
# Get the value of the property.propertyValue = canvas_var.isSelectable# Set the value of the property.canvas_var.isSelectable = propertyValue
#include <Fusion/Image/Canvas.h>// Get the value of the property.boolean propertyValue = canvas_var->isSelectable();// Set the value of the property, where value_var is a boolean.bool returnValue = canvas_var->isSelectable(value_var);