Method AddRune
AddRune(Rune)
Draws the specified character at the current draw position.
public void AddRune(Rune rune)
Parameters
runeRuneThe 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
ccharCharacter 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
Remarks
The top-left corner of the visible content area is ViewPort.Location.