ComponentOne PDF for .NET
CSJ2K.j2k.util Namespace / StreamMsgLogger Class / StreamMsgLogger Constructor / StreamMsgLogger Constructor(StreamWriter,StreamWriter,Int32)
Where to print simple strings and LOG and INFO messages.
Where to print WARNING and ERROR messages
The line width to use in formatting

In This Topic
    StreamMsgLogger Constructor(StreamWriter,StreamWriter,Int32)
    In This Topic
    Constructs a StreamMsgLogger that uses 'outstr' as the 'out' stream, and 'errstr' as the 'err' stream. Note that 'outstr' and 'errstr' can be System.out and System.err.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal outstr As StreamWriter, _
       ByVal errstr As StreamWriter, _
       ByVal lw As Integer _
    )
    public StreamMsgLogger( 
       StreamWriter outstr,
       StreamWriter errstr,
       int lw
    )

    Parameters

    outstr
    Where to print simple strings and LOG and INFO messages.
    errstr
    Where to print WARNING and ERROR messages
    lw
    The line width to use in formatting
    See Also