void=setCellRotation(col:integer, row:integer, angle: integer)
The function rotates a text in cell by a certain angle.

Parameters
Col and row are coordinates of a cell in which we want to rotate text. Angle is the angle, defined in degrees, by which we want to rotate the text in the cell.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellRotation(2, 10, 45)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellRotation"; 2; 10; 45)