Controls if the image is visible through the model or not.
# Get the value of the property.propertyValue = canvas_var.isDisplayedThrough# Set the value of the property.canvas_var.isDisplayedThrough = propertyValue
#include <Fusion/Image/Canvas.h>// Get the value of the property.boolean propertyValue = canvas_var->isDisplayedThrough();// Set the value of the property, where value_var is a boolean.bool returnValue = canvas_var->isDisplayedThrough(value_var);