Table of Contents

Method Load

Namespace
Terminal.Gui
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

bool

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<Cell>)

Loads the contents of the Cell list into the TextView.

public void Load(List<Cell> cells)

Parameters

cells List<Cell>

Rune cells list to load the contents from.

Load(List<List<Cell>>)

Loads the contents of the list of Cell list into the TextView.

public void Load(List<List<Cell>> cellsList)

Parameters

cellsList List<List<Cell>>

List of rune cells list to load the contents from.