| TagUtilsTagCheck Method (String, String, String, String, ChkFlags, Boolean) | 
 
            Generates an HTML INPUT tag with type="checkbox" configured as specified.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static string TagCheck(
	string id,
	string val,
	string onClick,
	string tooltip,
	ChkFlags flags,
	bool neverDirty
)
Public Shared Function TagCheck ( 
	id As String,
	val As String,
	onClick As String,
	tooltip As String,
	flags As ChkFlags,
	neverDirty As Boolean
) As String
Parameters
- id
- Type: SystemString
 The ID to use for the tag.
- val
- Type: SystemString
 The value for the checkbox.
- onClick
- Type: SystemString
 Javascript to be executed when the user clicks on the checkbox.
- tooltip
- Type: SystemString
 The tooltip to use for the checkbox
- flags
- Type: NetQuarryChkFlags
 Flags specifying how the checkbox is to be rendered.
- neverDirty
- Type: SystemBoolean
 If set, changing this control's value will not be considered to make it's page dirty.
Return Value
Type: 
StringThe HTML checkbox configured as specified.
 See Also
See Also