Table of Contents

Method AddRune

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

AddRune(Rune)

Draws the specified character at the current draw position.

public void AddRune(Rune rune)

Parameters

rune Rune

The Rune.

AddRune(char)

Adds the specified char to the display at the current cursor position. This method is a convenience method that calls AddRune(Rune) with the Rune constructor.

public void AddRune(char c)

Parameters

c char

Character to add.

AddRune(int, int, Rune)

Draws the specified character in the specified viewport-relative column and row of the View.

public void AddRune(int col, int row, Rune rune)

Parameters

col int

Column (viewport-relative).

row int

Row (viewport-relative).

rune Rune

The Rune.

Remarks

The top-left corner of the visible content area is ViewPort.Location.