{description}
{excerpt}Specifies whether [AbsolutePositioning.Height|AbsolutePositioning.Height] is an exact height \(true\) or a minimum height \(false\).{excerpt}
{signature:C#}
 public boolean HeightExact{ get; set; }
{signature}{signature:vb.net}
Public Property HeightExact() As Boolean
{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}