| EAPCtrlUtilsHeightForcerHtml Method  | 
 
            Generates HTML for use in a table to force a minimum row height.  
            Seems to work more reliably than min-height CSS and works in all browsers including IE6.
            See 
HeightForcer(Boolean, Int32) to get a control based on this HTML.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static string HeightForcerHtml(
	bool isIE,
	int height
)
Public Shared Function HeightForcerHtml ( 
	isIE As Boolean,
	height As Integer
) As String
Parameters
- isIE
- Type: SystemBoolean
 Specifies whether or not rendering for IE.
- height
- Type: SystemInt32
 The height to use, in pixels.
Return Value
Type: 
StringThe HTML to include.
 See Also
See Also