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

In This Topic
    println Method (MsgLogger)
    In This Topic
    Prints the string 'str' to the output device, appending a line return. The message is reformatted as appropriate to the particular diplaying device, where 'flind' and 'ind' are used as hints for performing that operation. However, any newlines appearing in 'str' are respected. The output device may not display the string until flush() is called. Some implementations may automatically flush when this method is called. This method just prints the string, the string does not make part of a "message" in the sense that no severity is associated to it.
    Syntax
    'Declaration
     
    
    Sub println( _
       ByVal str As String, _
       ByVal flind As Integer, _
       ByVal ind As Integer _
    ) 
    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