How to add code comments

PBXmlDoc parses the source code of your applicationto produce documentation.

 

Add Object Level comments

Ø      Add a user defined event called ue_comment and use it to specify information at user event.

output:

 

Add Script Level comments

Ø      Add a your script comments at the beginning of the script closed between <comment></comment> tag.

 

script

/*<comment> This is a script level comment </comment>*/

/* User defined function */

///

///Arguments

///arg_1: .............

 

Int i

 

i = 1

 

return i

 

 

output