Header menu logo B2R2

Printer Type

Any B2R2's layers should *not* use System.Console nor `printfn` to directly output strings. Instead, they should resort to the Printer to "indirectly" print out strings.

Constructors

Constructor Description

Printer()

Full Usage: Printer()

Returns: Printer
Returns: Printer

Instance members

Instance member Description

this.Flush

Full Usage: this.Flush

Modifiers: abstract

Flush out everything.

this.Print

Full Usage: this.Print

Parameters:
    arg0 : string
    args : obj[]

Modifiers: abstract

Print out the formated string.

arg0 : string
args : obj[]

this.Print

Full Usage: this.Print

Parameters:
Modifiers: abstract

Print out the given ColoredString.

arg0 : ColoredString

this.Print

Full Usage: this.Print

Parameters:
Modifiers: abstract

Print out the given OutString.

arg0 : OutString

this.PrintLine

Full Usage: this.PrintLine

Modifiers: abstract

Print out a newline.

this.PrintLine

Full Usage: this.PrintLine

Parameters:
    fmt : string
    args : obj[]

Modifiers: abstract

Print out the formated string with newline.

fmt : string
args : obj[]

this.PrintLine

Full Usage: this.PrintLine

Parameters:
    s : string

Modifiers: abstract

Print out the formated string with newline.

s : string

this.PrintLine

Full Usage: this.PrintLine

Parameters:
Modifiers: abstract

Print out the given ColoredString with newline.

cs : ColoredString

this.PrintLine

Full Usage: this.PrintLine

Parameters:
Modifiers: abstract

Print out the given OutString with newline.

os : OutString

this.PrintLineIfPrevLineWasNotEmpty

Full Usage: this.PrintLineIfPrevLineWasNotEmpty

Modifiers: abstract

Print out a newline only if the previous output was not empty (i.e., a line with only a newline). In other words, this function will not output anything if the previous output was an empty line. This is to make sure we output only one single empty line in some situations.

this.PrintRow

Full Usage: this.PrintRow

Parameters:
Modifiers: abstract

Print out table row for the given string list.

arg0 : bool
arg1 : TableConfig
arg2 : string list

this.PrintRow

Full Usage: this.PrintRow

Parameters:
Modifiers: abstract

Print out table row for the given ColoredString list.

arg0 : bool
arg1 : TableConfig
arg2 : ColoredString list

this.PrintSectionTitle

Full Usage: this.PrintSectionTitle

Parameters:
    arg0 : string

Modifiers: abstract

Print out the section title.

arg0 : string

this.PrintSubsectionTitle

Full Usage: this.PrintSubsectionTitle

Parameters:
    arg0 : string

Modifiers: abstract

Print out the subsection title.

arg0 : string

this.PrintSubsubsectionTitle

Full Usage: this.PrintSubsubsectionTitle

Parameters:
    arg0 : string

Modifiers: abstract

Print out the subsubsection title.

arg0 : string

this.PrintTwoCols

Full Usage: this.PrintTwoCols

Parameters:
    arg0 : string
    arg1 : string

Modifiers: abstract

Print out a line with two columns. Each column has a predefined width.

arg0 : string
arg1 : string

this.PrintTwoColsWithColorOnSnd

Full Usage: this.PrintTwoColsWithColorOnSnd

Parameters:
Modifiers: abstract

Print out a line with two columns. Each column has a predefined width, and the second column will be colored.

arg0 : string
arg1 : ColoredString

Static members

Static member Description

Printer.PrintErrorToConsole(str)

Full Usage: Printer.PrintErrorToConsole(str)

Parameters:
    str : string

str : string

Printer.PrintToConsole(s, args)

Full Usage: Printer.PrintToConsole(s, args)

Parameters:
    s : string
    args : obj[]

s : string
args : obj[]

Printer.PrintToConsole(s)

Full Usage: Printer.PrintToConsole(s)

Parameters:
s : ColoredString

Printer.PrintToConsole(s)

Full Usage: Printer.PrintToConsole(s)

Parameters:
s : OutString

Printer.PrintToConsoleLine()

Full Usage: Printer.PrintToConsoleLine()

Printer.PrintToConsoleLine(s, args)

Full Usage: Printer.PrintToConsoleLine(s, args)

Parameters:
    s : string
    args : obj[]

s : string
args : obj[]

Printer.PrintToConsoleLine(s)

Full Usage: Printer.PrintToConsoleLine(s)

Parameters:
    s : string

s : string

Printer.PrintToConsoleLine(s)

Full Usage: Printer.PrintToConsoleLine(s)

Parameters:
s : ColoredString

Printer.PrintToConsoleLine(s)

Full Usage: Printer.PrintToConsoleLine(s)

Parameters:
s : OutString

Type something to start searching.