Documentación de HotXLS

Propiedad Orientation

La orientación del texto. Puede ser un valor Integer de -90 a 90 grados o xlVertical. Lectura/escritura

Sintaxis

property Orientation: OleVariant;

Ejemplo

Este ejemplo establece la propiedad de orientación de los rangos combinados A1:A5 y B1:B5

With Workbook.Sheets[1].Range['A1','A5'] do begin
  Merge;
  Value := 'Text';
  Orientation := 90;
end;

With Workbook.Sheets[1].Range['B1','B5'] do begin
  Merge;
  Value := 'Vertical';
  Orientation := xlVertical;
end;