Specifies the DocType for which WebMenu will target in its rendering.

Remarks

The DocType constant represents the different DocTypes WebMenu can target when generating code. This does not set a DOCTYPE property on your page, instead it instructs WebMenu to tailor itself for pages written to varying specification.

Default: XHTML10Transitional

Examples of DOCTYPE declarations fitting the property values:

HTML401Quirks
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

HTML401Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

HTML401Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
   
XHTML10Transitional
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

XHTML10Strict
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

HTML5
<!DOCTYPE html>

Copyright © Coalesys, Inc.