Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

 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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property Hidden() As Boolean
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section >
Hidden
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle