Files
webwindowconfigurator/WebWindowComplex/LayoutConst.cs
T
Annamaria Sassi e8cecb3113 - Aggiornati select con lista dati
- Aggiornato readme
2025-11-05 16:15:33 +01:00

31 lines
586 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex
{
public partial class LayoutConst
{
public enum CompileStep
{
Template = 0,
Tree = 1,
Frame,
Split,
Sash,
Fill,
General
}
public enum PositionJoints
{
BL = 0, // Bottom Left
BR = 1, // Bottom Right
TR, // Top Right
TL // Top Left
}
}
}