Object Reference : Object View and Procedure Reference : Table
  
 
setjust
Set the justification for cells in the table.
Syntax
table_name.setjust(cell_range) format_arg
where format_arg may consist of the following:
 
top / middle / bottom
Vertical justification setting.
auto / left / center / right
Horizontal justification setting. Strings are left-justified and numbers are right-justified under “auto”.
The default settings are taken from the original view when created by freezing a view, or as “middle bottom” for newly created tables.
The cell_range defines the cells to be modified. See Table::setformat for syntax.
Examples
To set the justification, you must provide a valid cell specification:
tab1.setjust(@all) top
tab1.setjust(2,B,10,D) left bottom
tab1.setjust(R2C2:R4C4) right top
Cross-references
See Table::setwidth, Table::setheight, and Table::setindent for details on setting table widths, height and indentation.
For additional discussion of table commands see “Working with Tables and Spreadsheets”.
See also “Table and Text Objects” for a discussion and examples of table formatting in EViews.