Table of Contents

Method Move

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Move(int, int)

Updates Col and Row to the specified column and row in Contents. Used by AddRune(Rune) and AddStr(string) to determine where to add content.

public virtual void Move(int col, int row)

Parameters

col int

Column to move to.

row int

Row to move to.

Remarks

This does not move the cursor on the screen, it only updates the internal state of the driver.

If col or row are negative or beyond Cols and Rows, the method still sets those properties.