| ConverterSetErrorHandler Method | 
Public API of XMLmind XSL-FO Converter for .NET
             Registers an error handler.
             
 
Namespace: XmlMind.FoConverterAssembly: xfc-api (in xfc-api.dll) Version: 6.3.0
 Syntax
Syntaxpublic void SetErrorHandler(
	IErrorHandler handler
)
Public Sub SetErrorHandler ( 
	handler As IErrorHandler
)
public:
void SetErrorHandler(
	IErrorHandler^ handler
)
Parameters
- handler
- Type: XmlMind.FoConverterIErrorHandler
 The error handler.
 Remarks
Remarks
             This method specifies an error handler to be used for reporting
             error conditions.
             If no error handler is registered, a default implementation
             will be used.
             The Error method of this default handler throws an exception,
             while the Warning method writes a warning message to
             the standard error stream.
             
 See Also
See Also