Method AddRune | Terminal.Gui v2 (original) (raw)
Namespace
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.