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
Wiki Markup
{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.{excerpt}
{signature:C#}
 public boolean Hidden{ get; set; }
{signature}{signature:vb.net}
Public Property Hidden() As Boolean
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section > Hidden

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

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

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

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

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

{example}