|
|
|||||||
|
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.
|
|||||||
|
Parameters: |
|||||||
|
|||||||
|
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 | |||||||
|
|