Controls if the image is visible through the model or not. Defaults to true when the input is created.
# Get the value of the property.propertyValue = canvasInput_var.isDisplayedThrough# Set the value of the property.canvasInput_var.isDisplayedThrough = propertyValue
#include <Fusion/Image/CanvasInput.h>// Get the value of the property.boolean propertyValue = canvasInput_var->isDisplayedThrough();// Set the value of the property, where value_var is a boolean.bool returnValue = canvasInput_var->isDisplayedThrough(value_var);