var fDesc=new Array(); fDesc[0] = "Time2HELP is a tool for writing and maintaining Delphi source code
documentation. Documentation can (but need not) be separated from the
code and stored as XML text files. You only have to "fill in the blanks"
using the powerful Time2HELP editor.
Time2HELP extracts "JavaDoc style" comments and symbol declarations from
the source code. Supports the same syntax as Sun's JavaDoc tool, as well
as an extended set of tags.
Time2HELP automatically compiles in-source and external documentation
into different output formats: WinHelp, HTML Help and Plain HTML.
Time2HELP makes sure the structure of your documentation always stays in
synch with your code. You can also integrate the generated help files
with Delphi's own, enabling you to press 'F1' on your classes and their
properties in the Delphi editor to instantly get help on what's under
the cursor."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }