Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

...

Wiki Markup
{description}
{excerpt}Specifies whether [AbsolutePositioning.Height|AbsolutePositioning.Height] is an exact height \(true\) or a minimum height \(false\).

...

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

          //--- Get HeightExact
          bool heightExact = oAbsolutePositioning.HeightExact;

          //--- Set HeightExact
          oAbsolutePositioning.Height = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get HeightExact
          Dim heightExact As Boolean = oAbsolutePositioning.HeightExact

          '--- Set HeightExact
          oAbsolutePositioning.HeightExact = True
        {code}

{example}
Signature
C#C#
{excerpt}
{signature:C#}
 public boolean HeightExact{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property HeightExact() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle