Description
Specifies whether AbsolutePositioning.Height is an exact height (true) or a minimum height (false).C#
<p> public boolean HeightExact{ get ; set ; }</p> |
vb.net
<p> Public Property HeightExact() As Boolean </p> |
Examples
C#
//--- Get HeightExact bool heightExact = oAbsolutePositioning.HeightExact; //--- Set HeightExact oAbsolutePositioning.Height = true ; |
vb.net
'--- Get HeightExact Dim heightExact As Boolean = oAbsolutePositioning.HeightExact '--- Set HeightExact oAbsolutePositioning.HeightExact = True |