Main Content

Value property

Status of check

Values

true
false
'' (default)

Description

The Value property specifies the initial status of the check. When you use the Value property to specify the initial status of the check, you enable or disable Run This Check in the Model Advisor window.

If you want to specify the initial status of a check in the By Product folder, before starting Model Advisor, make sure ModelAdvisor.Preferences.DeselectByProduct is false.

true

Check is enabled

false

Check is disabled

Examples

% hide all checks that do not belong to Demo group
if ~(strcmp(checkCellArray{i}.Group, 'Demo'))
    checkCellArray{i}.Visible = false;
    checkCellArray{i}.Value = false;
end