Main Content

setColSpan

Class: ModelAdvisor.InputParameter
Namespace: ModelAdvisor

Specify number of columns for input parameter

Syntax

setColSpan(input_param, [start_col end_col])

Description

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 Arguments

input_paramInstantiation of the ModelAdvisor.InputParameter class
start_colA positive integer representing the first column that the input parameter occupies in the layout grid
end_colA positive integer representing the last column 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]);