Defines HTML text inserted into the containing document.
|
---|
<layout>
<HTMLtag>Inserted text</HTMLtag>
</layout> |
Values
- HTMLTag
The name of HTML tag for which the element's text is a replacement.
Remarks
Example
The following shows an example of a script component with a <layout> element. Because the script component contains the <?XML ?> declaration at the top, the <layout> element contains a CDATA section to make the contents of the <layout> element opaque to the XML parser.
| Copy Code |
---|
<?XML version="1.0" ?>
<component id="bvrScriptlet1">
<registration progID="BehaviorScriptlet"/>
<implements type="Behavior">
<layout>
<![CDATA[
<h1>This is the HTML to show in the element</h1>
]]>
</layout>
</implements>
</component> |