CPF/CPF.ReoGrid/Drawing/IDrawingObjectStyle.cs

18 lines
279 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
using CPF.ReoGrid.Graphics;
namespace CPF.ReoGrid.Drawing
{
public interface IDrawingObjectStyle
{
Color FillColor { get; set; }
Color LineColor { get; set; }
float LineWidth { get; set; }
LineStyles LineStyle { get; set; }
}
}