DumpTagList

CAS ActiveX Methods

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.

LONG DumpTagList(
  LONG TagList, // Taglist to be dumped
  BSTR Header // First string in output header
)

Parameters:
TagList Taglist to be dumped.

Header This string is placed at the start of the taglist dump as a header.

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