18 lines
279 B
C#
18 lines
279 B
C#
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; }
|
|
}
|
|
}
|