Gets and sets if the command prompt is shown.
# Get the value of the property.propertyValue = generalPreferences_var.isCommandPromptShown# Set the value of the property.generalPreferences_var.isCommandPromptShown = propertyValue
#include <Core/Application/GeneralPreferences.h>// Get the value of the property.boolean propertyValue = generalPreferences_var->isCommandPromptShown();// Set the value of the property, where value_var is a boolean.bool returnValue = generalPreferences_var->isCommandPromptShown(value_var);