Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Marks text in a script component file that should be ignored.
Syntax
<comment>
text here
</comment>
Remarks
Use the <comment> element inside other XML elements to enclose text that is not markup and not data, but that you want to include for other purposes, such as documentation.
The following script component fragment shows a <comment> element inside a <public> element.
<public>
<comment>
This implements an Automation component with the
method "random" and the property "uppercaseName"
</comment>
<method name="random" internalName="getRandomNumber"/>
<property name="uppercaseName">
<get internalName="get_ucname"/>
<put internalName="put_ucname"/>
</property>
</public>