class TerminalRender::Console

Defined in:

render/terminal.cr

Instance Method Summary

Instance methods inherited from class Object

to_sban(io : IO)
to_sban(encoder : SBAN::Encoder)
to_sban : Bytes
to_sban

Class methods inherited from class Object

from_sban(string_or_io) from_sban

Instance Method Detail

def clear! #

[View source]
def height : UInt16 #

Returns the height of the console screen.


[View source]
def move_down(cells = 1) #

Moves the cursor down by cells.


[View source]
def move_left(cells = 1) #

Moves the cursor left by cells.


[View source]
def move_right(cells = 1) #

Moves the cursor right by cells.


[View source]
def move_up(cells = 1) #

Moves the cursor up by cells.


[View source]
def position=(position : Tuple(UInt16, UInt16)) #

Sets the position of the cursor to position.


[View source]
def reset_color #

[View source]
def scrollbar=(scrollbar : Bool) #

Disables or enables the alternative screen buffer for the console which doesn't have a scrollbar.


[View source]
def title=(title) #

Sets the title of the window to title.


[View source]
def update #

Updates the values of #width and #height


[View source]
def visible=(visible : Bool) #

Shows or hides the cursor.


[View source]
def width : UInt16 #

Returns the width of the console screen.


[View source]
def write(text) #

[View source]