Specify table cell alignment
setEntryAlign(table, row, column,
alignment
)
setEntryAlign(table, row, column,
specifies
the cell alignment of the designated cell.alignment
)
table | Instantiation of the |
row | An integer specifying row number |
column | An integer specifying column number |
alignment | Cell alignment, specified as one of the following:
|
table1 = ModelAdvisor.Table(2,3); setHeading(table1, 'New Table'); . . . setEntry(table1, 1, 1, 'First Entry'); setEntryAlign(table1, 1, 1, 'center');