Table of Contents

Method Add

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Add(View)

Adds a subview (child) to this view.

public virtual void Add(View view)

Parameters

view View

Remarks

The Views that have been added to this view can be retrieved via the Subviews property. See also Remove(View)RemoveAll()

Add(params View[])

Adds the specified views (children) to the view.

public void Add(params View[] views)

Parameters

views View[]

Array of one or more views (can be optional parameter).

Remarks

The Views that have been added to this view can be retrieved via the Subviews property. See also Remove(View)RemoveAll()