Table of Contents

Method FillRect

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

FillRect(Rectangle, Rune)

Fills the specified rectangle with the specified rune, using CurrentAttribute

void FillRect(Rectangle rect, Rune rune = default)

Parameters

rect Rectangle

The Screen-relative rectangle.

rune Rune

The Rune used to fill the rectangle

Remarks

The value of Clip is honored. Any parts of the rectangle not in the clip will not be drawn.

FillRect(Rectangle, char)

Fills the specified rectangle with the specified char. This method is a convenience method that calls FillRect(Rectangle, Rune).

void FillRect(Rectangle rect, char c)

Parameters

rect Rectangle
c char