Method Load | Terminal.Gui v2 (original) (raw)
Namespace
Assembly
Terminal.Gui.dll
Load(string)
Loads the contents of the file into the TextView.
public bool Load(string path)
Parameters
path
string
Path to the file to load.
Returns
true
, if file was loaded, false
otherwise.
Load(Stream)
Loads the contents of the stream into the TextView.
public void Load(Stream stream)
Parameters
stream
Stream
Stream to load the contents from.
Load(List)
Loads the contents of the Cell list into the TextView.
public void Load(List<Cell> cells)
Parameters
Rune cells list to load the contents from.
Load(List<List>)
Loads the contents of the list of Cell list into the TextView.
public void Load(List<List<Cell>> cellsList)
Parameters
List of rune cells list to load the contents from.