DumpString

CAS ActiveX Methods

The DumpString method adds a string to the debug buffer, and debug file if one was provided when Open was called, for a CAS instance.

void DumpString(
  BSTR Str // String to add to debug buffer
)


Parameters:
Str String to be added to debug buffer.

Return Values:
None

Example:
function OutputString( Str )
  {
  var DebugWin;

  CAS.DumpString(Str);

  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 DumpTagList, CAS GetDbgDump