mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-31 02:08:03 +01:00
16 lines
505 B
C#
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; }
|
|
}
|