Sets or returns a boolean that represents if a character run has the the Outline effect, displaying the inner and outer borders of each character. (This effect is not available for all fonts.)

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

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

          //--- Return Outlined
          bool outlined = oFont.Outlined;

          //--- Set Outlined
          oFont.Outlined = true;
        
          '--- Return Outlined
          Dim outlined As Boolean = oFont.Outlined

          '--- Set Outlined
          oFont.Outlined = True