Main Content
setRowSpan
Class: ModelAdvisor.InputParameter
Namespace: ModelAdvisor
Specify rows for input parameter
Syntax
setRowSpan(input_param, [start_row end_row])
Description
setRowSpan(input_param, [start_row end_row])
specifies
the number of rows that the parameter occupies. Specify where you
want an input parameter located in the layout grid when there are
multiple input parameters.
Input Arguments
input_param | The input parameter object |
start_row | A positive integer representing the first row that the input parameter occupies in the layout grid |
end_row | A positive integer representing the last row that the input parameter occupies in the layout grid |
Examples
inputParam2 = ModelAdvisor.InputParameter; inputParam2.Name = 'Standard font size'; inputParam2.Value='12'; inputParam2.Type='String'; inputParam2.Description='sample tooltip'; inputParam2.setRowSpan([2 2]); inputParam2.setColSpan([1 1]);