teamlead-dashboard/src/TUI/Engine/Nodes/Attributes/Resizing/IResizable.cs

14 lines
338 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 SetFixed(Orientation orientation, int value);
Size GetFixedSize();
}