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
vb.net
vb.net
Public Property Hidden() As Boolean
Remarks

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

Example
Code Block
csharp
csharp
titleC#

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

          //--- Set Hidden
          oFont.Hidden = true;
        
Code Block
vbnet
vbnet
titlevb.net

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

          '--- Set Hidden
          oFont.Hidden = True