View.Arrangement.cs 488 B

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