Main Content

Name property

Class: ModelAdvisor.Action
Namespace: ModelAdvisor

Action button label

Values

Character vector

Default: '' (empty character vector)

Description

The Name property specifies the label for the action button. This property is required.

Examples

% define action (fix) operation
myAction = ModelAdvisor.Action;
%Specify a callback function for the action
myAction.setCallbackFcn(@sampleActionCB);
myAction.Name='Fix block fonts';