2
0

View.Arrangement.cs 553 B

123456789101112131415
  1. namespace Terminal.Gui;
  2. public partial class View
  3. {
  4. /// <summary>
  5. /// Gets or sets the user actions that are enabled for the view within it's <see cref="SuperView"/>.
  6. /// </summary>
  7. /// <remarks>
  8. /// <para>
  9. /// Sizing or moving a view is only possible if the <see cref="View"/> is part of a <see cref="SuperView"/> and
  10. /// the relevant position and dimensions of the <see cref="View"/> are independent of other SubViews
  11. /// </para>
  12. /// </remarks>
  13. public ViewArrangement Arrangement { get; set; }
  14. }