[]
Gets a value that represents the text orientation of the associated IRange object as displayed in the current user interface.
int Orientation { get; }
ReadOnly Property Orientation As Integer
IRange range = worksheet.Range["A1"];
range.Value = "Test";
range.Orientation = 45;
int orientation = range.DisplayFormat.Orientation;