Main Content
setEntryValign
Specify table cell vertical alignment
Syntax
setEntryValign(table, row, column,
alignment
)
Description
setEntryValign(table, row, column,
specifies
the cell alignment of the designated cell.alignment
)
Input Arguments
table | Instantiation of the |
row | An integer specifying row number |
column | An integer specifying column number |
alignment | Cell vertical alignment, specified as one of the following:
|
Examples
table1 = ModelAdvisor.Table(2,3); setHeading(table1, 'New Table'); . . . setEntry(table1, 1, 1, 'First Entry'); setEntryValign(table1, 1, 1, 'middle');