Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets or returns a boolean that represents if a character run has the Hidden effect set. If set to true, this font will only be displayed when the display hidden flag is turned on for the containing document.

Signature
C#
C#
 public boolean Hidden{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Hidden() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Format

menu

>

Font...

>

Font

tab

>

Effects

section

>

Hidden {remarks} {example}{code:csharp|title=C#}

Hidden

Example
Code Block
csharp
csharp
titleC#


          //--- Return Hidden
          bool hidden = oFont.Hidden;

          //--- Set Hidden
          oFont.Hidden = true;
        
{code} {code:vbnet|title=
Code Block
vbnet
vbnet
titlevb.net
}


          '--- Return Hidden
          Dim hidden As Boolean = oFont.Hidden

          '--- Set Hidden
          oFont.Hidden = True
        
{code} {example}