Documentazione HotXLS

Proprietà Orientation

L'orientamento del testo. Può essere un valore Integer nell'intervallo da -90 a 90 gradi

Sintassi

property Orientation: OleVariant;

Esempio

This example sets orientation property for the merged ranges A1:A5 and 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;