Main Content

Visible property

Indicate to display or hide check

Values

true (default)
false

Description

The Visible property specifies whether the Model Advisor displays the check.

true

Display the check

false

Hide the check

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