Main Content

setEntryValign

Specify table cell vertical alignment

Syntax

setEntryValign(table, row, column, alignment)

Description

setEntryValign(table, row, column, alignment) specifies the cell alignment of the designated cell.

Input Arguments

table

Instantiation of the ModelAdvisor.Table class

row

An integer specifying row number

column

An integer specifying column number

alignment

Cell vertical alignment, specified as one of the following:

  • 'top' (default)

  • 'middle'

  • 'bottom'

Examples

table1 = ModelAdvisor.Table(2,3);
setHeading(table1, 'New Table');
.
.
.
setEntry(table1, 1, 1, 'First Entry');
setEntryValign(table1, 1, 1, 'middle');