Class: ModelAdvisor.Check
Package: ModelAdvisor
Specify layout grid for input parameters
setInputParametersLayoutGrid(check_obj, [row col])
setInputParametersLayoutGrid(check_obj, [row col])
specifies
the layout grid for input parameters in the Model Advisor. Use the setInputParametersLayoutGrid
method
when there are multiple input parameters.
check_obj | Instantiation of the ModelAdvisor.Check class |
row | Number of rows in the layout grid |
col | Number of columns in the layout grid |
% --- sample check 1 rec = ModelAdvisor.Check('com.mathworks.sample.Check1'); rec.Title = 'Check Simulink block font'; rec.TitleTips = 'Example style three callback'; rec.setCallbackFcn(@SampleStyleThreeCallback,'None','StyleThree'); rec.setInputParametersLayoutGrid([3 2]);