|
|
|||||||||
|
The DumpTagList method dumps the contents of a taglist, including all tags and sub-sections, to the debug buffer, and debug file if one was provided when the Open method was called.
|
|||||||||
|
Parameters: |
|||||||||
|
|||||||||
|
Return Values: |
|||||||||
| None | |||||||||
|
Example: |
|||||||||
|
function OutputTaglist( Taglist )
{ var DebugWin; CAS.DumpTagList(Taglist,"DEBUG"); DebugWin=window.open("","debug"); DebugWin.document.writeln("<font face='Courier' size='2'><br>"); DebugWin.document.writeln(CAS.GetDbgDump()); DebugWin.document.writeln("<br></font>"); DebugWin.focus(); } |
|||||||||
|
See Also: |
|||||||||
| CAS Open, CAS DumpString, CAS GetDbgDump | |||||||||
|
|