void=setCellVAlign(col:integer, row:integer, vAlign: symbol)
The function sets text alignment in cell in the vertical shape.

Parameters
Col and row are coordinates of a cell for which we want to set vertical alignment. Type of the parameter vAlign is symbol and it can reach the following values: #top, #middle, and #bottom.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellVAlign(2, 10, #middle)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellVAlign"; 2; 10; #middle)