View.Arrangement.cs 505 B

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