Class: ModelAdvisor.InputParameter
Package: ModelAdvisor
Specify number of columns for input parameter
setColSpan(input_param, [start_col end_col])
setColSpan(input_param, [start_col end_col])
specifies
the number of columns that the parameter occupies. Use the setColSpan
method
to specify where you want an input parameter located in the layout
grid when there are multiple input parameters.
input_param | Instantiation of the ModelAdvisor.InputParameter class |
start_col | A positive integer representing the first column that the input parameter occupies in the layout grid |
end_col | A positive integer representing the last column that the input parameter occupies in the layout grid |
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]);