KOP/Components/Nonvisual/LegendAlignment.cs

17 lines
256 B
C#
Raw Permalink Normal View History

2024-10-16 01:47:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Components.Nonvisual
{
public enum LegendAlignment
{
Top,
Bottom,
Left,
Right
}
}