using System; using CPF.ReoGrid.Graphics; namespace CPF.ReoGrid.Drawing { public interface IDrawingLineObjectStyle : IDrawingObjectStyle { LineCapStyles StartCap { get; set; } LineCapStyles EndCap { get; set; } } }