Sets or returns a boolean that represents if a character run has the Shadow effect, displaying a shadow behind, beneath and to the right of each character.

 public boolean Shadow{ get; set; }
Public Property Shadow() As Boolean

MS Word equivalent: Format menu > Font... > Font tab > Effects section > Shadow


          //--- Return Shadow
          bool shadow = oFont.Shadow;

          //--- Set Shadow
          oFont.Shadow = true;
        

          '--- Return Shadow
          Dim shadow As Boolean = oFont.Shadow

          '--- Set Shadow
          oFont.Shadow = True