mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-17 02:26:19 +00:00
14 lines
338 B
C#
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();
|
|
} |