Specifies whether AbsolutePositioning.Height is an exact height (true) or a minimum height (false).

<p> public boolean HeightExact{ get; set; }</p>
<p>Public Property HeightExact() As Boolean</p>
 
          //--- Get HeightExact
          bool heightExact = oAbsolutePositioning.HeightExact;

          //--- Set HeightExact
          oAbsolutePositioning.Height = true;
        
          '--- Get HeightExact
          Dim heightExact As Boolean = oAbsolutePositioning.HeightExact

          '--- Set HeightExact
          oAbsolutePositioning.HeightExact = True