Marks text in a script component file that should be ignored.
|
---|
<comment>
text here
</comment> |
Remarks
Example
The following script component fragment shows a <comment> element inside a <public> element.
| Copy Code |
---|
<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> |
See Also