mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 19:46:19 +00:00
14 lines
355 B
C#
14 lines
355 B
C#
|
using TUI.Engine.Nodes.Attributes.Orientations;
|
||
|
|
||
|
namespace TUI.Engine.Nodes.Attributes.Resizing;
|
||
|
|
||
|
public interface IResizable
|
||
|
{
|
||
|
Resizing ResizingHorizontal { get; }
|
||
|
|
||
|
Resizing ResizingVertical { get; }
|
||
|
|
||
|
void SetAdaptive(Orientation orientation);
|
||
|
void SetHug(Orientation orientation);
|
||
|
void SetFixed(Orientation orientation, int value);
|
||
|
}
|