Gets and Sets if this command is repeatable using the 'Repeat Last Command' option from the Fusion marking menu.
# Get the value of the property.propertyValue = command_var.isRepeatable# Set the value of the property.command_var.isRepeatable = propertyValue
#include <Core/UserInterface/Command.h>// Get the value of the property.boolean propertyValue = command_var->isRepeatable();// Set the value of the property, where value_var is a boolean.bool returnValue = command_var->isRepeatable(value_var);