System.Drawing.Drawing2D.CustomLineCap
Encapsulates a custom user-defined line cap.
namespace System.Drawing.Drawing2D
{
public class CustomLineCap : MarshalByRefObject, ICloneable, IDisposable
{
public LineCap BaseCap { get; set; }
public float BaseInset { get; set; }
public LineJoin StrokeJoin { get; set; }
public float WidthScale { get; set; }
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath);
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap);
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap, float baseInset);
public object Clone();
public void Dispose();
protected virtual void Dispose(bool disposing);
public void GetStrokeCaps(out LineCap startCap, out LineCap endCap);
public void SetStrokeCaps(LineCap startCap, LineCap endCap);
}
}