Files
Terminal.Gui/Terminal.Gui/View/View.Arrangement.cs
2024-11-04 10:23:30 -07:00

16 lines
505 B
C#

#nullable enable
namespace Terminal.Gui;
public partial class View
{
/// <summary>
/// Gets or sets the user actions that are enabled for the arranging this view within it's <see cref="SuperView"/>.
/// </summary>
/// <remarks>
/// <para>
/// See the View Arrangement Deep Dive for more information: <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/arrangement.html"/>
/// </para>
/// </remarks>
public ViewArrangement Arrangement { get; set; }
}