ConsoleWriter

The console writer outputs data to the standard output. It does not support colors and cursor moving. This is the default writer if arsd.terminal is not present.

Members

Functions

goTo
void goTo(int )

not supported

hideCursor
void hideCursor()

not supported

showCursor
void showCursor()

not supported

width
uint width()

returns 80

write
void write(string text, Context )
writeReverse
void writeReverse(string text, Context )
writeln
void writeln(string text, Context )

Inherited Members

From ReportWriter

Context
enum Context

The information type. Convey meaning through color with a handful of emphasis utility classes.

goTo
void goTo(int )

Go back a few lines

write
void write(string , Context )

Write a string

writeReverse
void writeReverse(string , Context )

Write a string with reversed colors

writeln
void writeln(string , Context )

Write a string and go to a new line

showCursor
void showCursor()

Show the cursor from user

hideCursor
void hideCursor()

Hide the cursor from user

width
uint width()

Get how many characters you can print on a line

Meta