ComponentOne PdfViewer for WPF and Silverlight
C1.WPF.PdfViewer.4.6.2 Assembly / CSJ2K.j2k.util Namespace / StreamMsgLogger Class / println Method
The string to print
Indentation of the first line
Indentation of any other lines.

In This Topic
    println Method (StreamMsgLogger)
    In This Topic
    Prints the string 'str' to the 'out' stream, appending a newline. The message is reformatted to the line width given to the constructors and using 'flind' characters to indent the first line and 'ind' characters to indent the second line. However, any newlines appearing in 'str' are respected. The output device may or may not display the string until flush() is called, depending on the autoflush state of the PrintWriter, to be sure flush() should be called to write the string to the device. This method just prints the string, the string does not make part of a "message" in the sense that noe severity is associated to it.
    Syntax
    'Declaration
     
    
    Public Overridable Sub println( _
       ByVal str As String, _
       ByVal flind As Integer, _
       ByVal ind As Integer _
    ) 
    public virtual void println( 
       string str,
       int flind,
       int ind
    )

    Parameters

    str
    The string to print
    flind
    Indentation of the first line
    ind
    Indentation of any other lines.
    See Also