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; } } }