void=setCellHAlign(col:integer, row:integer, hAlign: symbol)
The function sets text alignment in cell in the horizontal shape.

Parameters
Col and row are coordinates of a cell for which we want to set horizontal alignment. Type of the parameter hAlign is symbol and it can reach the following values: #left, #center, and #right.


Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellHAlign(2, 10, #center)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellHAlign"; 2; 10; #center)