void=setCellHAlign(col:integer, row:integer, hAlign: symbol)
The function sets text alignment in cell in the horizontal shape.
ParametersCol 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 - AuthorwareCallObject(xls; "setActiveSheet" ; 1)
CallObject(xls; "setCellHAlign"; 2; 10; #center)