21 lines
408 B
C#
21 lines
408 B
C#
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; }
|
|
}
|
|
}
|