Message-ID: <1560873554.8285.1711639894195.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8284_1411219746.1711639894195" ------=_Part_8284_1411219746.1711639894195 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Font.Outlined

Font.Outlined

Description

Sets or returns a=20 boolean that represents if a character run has the the Outline= effect, displaying the inner and outer borders of each character. (This ef= fect is not available for all fonts.)=20
C#
=20
public boolean Outlined{ get; set; }
=20
=20
vb.net
=20
Public Property Outlined() As Boolean
=20
=20

Remarks

MS Word equivalent: Format me= nu > Font... > Font tab > Effects section > Outline=20

Examples

=20
C#
=20
          //--- Return Outlined
          bool outlined =3D oFont.Outlined;

          //--- Set Outlined
          oFont.Outlined =3D true;
        
=20
vb.net
=20
          '--- Return Outlined
          Dim outlined As Boolean =3D oFont.Outlined

          '--- Set Outlined
          oFont.Outlined =3D True
        
=20
------=_Part_8284_1411219746.1711639894195--