CPF/CPF.ReoGrid/Graphics/LineCap.cs

21 lines
408 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
namespace CPF.ReoGrid.Graphics
{
internal struct LineCap
{
public LineCapStyles StartStyle { readonly get; set; }
public LineCapStyles EndStyle { readonly get; set; }
public Size StartSize { readonly get; set; }
public Size EndSize { readonly get; set; }
public Color StartColor { readonly get; set; }
public Color EndColor { readonly get; set; }
}
}