Main Content
setRowHeadingAlign
Specify table row title alignment
Syntax
setRowHeadingAlign(table, row,
alignment
)
Description
setRowHeadingAlign(table, row,
specifies
the alignment for the designated table row.alignment
)
Input Arguments
table | Instantiation of the |
row | An integer specifying row number. |
alignment | Cell alignment, specified as one of the following:
|
Examples
table1 = ModelAdvisor.Table(2, 3); setRowHeading(table1, 1, 'Row 1 Title'); setRowHeadingAlign(table1, 1, 'center'); setRowHeading(table1, 2, 'Row 2 Title'); setRowHeadingAlign(table1, 2, 'center');