File I2Dimensional.cs
File List > Elements > I2Dimensional.cs
Go to the documentation of this file
using System.Drawing;
namespace LemonUI.Elements
{
public interface I2Dimensional : IRecalculable, IDrawable
{
#region Properties
PointF Position { get; set; }
SizeF Size { get; set; }
Color Color { get; set; }
#endregion
}
}