Sets or returns the angle that text is displayed at, as a value between -90 and 90.

<p> public int Orientation{ get; set; }</p>
<p>Public Property Orientation() As Integer</p>

          //--- Get Orientation
          int orient = styl.Orientation;

          //--- Set Orientation
          styl.Orientation = 45;
        
          '--- Get Orientation
          Dim orient As Integer = styl.Orientation

          '--- Set Orientation
          styl.Orientation = 45