Specify table row title alignment
setRowHeadingAlign(table, row,
alignment
)
setRowHeadingAlign(table, row,
specifies
the alignment for the designated table row.alignment
)
table | Instantiation of the |
row | An integer specifying row number. |
alignment | Cell alignment, specified as one of the following:
|
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');